Fixes for grid rotation (#4562)

* Fixes gas overlays
* Fixes verbs
*Set noRot on a bunch of stuff
This commit is contained in:
metalgearsloth
2021-09-16 13:02:10 +10:00
committed by GitHub
parent cc52ebb9b5
commit 820069ba9c
8 changed files with 56 additions and 48 deletions

View File

@@ -18,7 +18,7 @@ namespace Content.Shared.Interaction
/// Governs interactions during clicking on entities
/// </summary>
[UsedImplicitly]
public class SharedInteractionSystem : EntitySystem
public abstract class SharedInteractionSystem : EntitySystem
{
[Dependency] private readonly SharedBroadphaseSystem _sharedBroadphaseSystem = default!;
@@ -131,6 +131,7 @@ namespace Content.Shared.Interaction
if (rayResults.Count == 0) return true;
// TODO: Wot? This should just be in the predicate.
if (!ignoreInsideBlocker) return false;
foreach (var result in rayResults)