Fires burn bright (#6516)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
hubismal
2022-02-08 04:43:33 -06:00
committed by GitHub
parent 11f650a459
commit 1c6df07086
4 changed files with 100 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ using Robust.Shared.Maths;
namespace Content.Client.Atmos.Overlays
{
public class GasTileOverlay : Overlay
public sealed class GasTileOverlay : Overlay
{
private readonly GasTileOverlaySystem _gasTileOverlaySystem;
@@ -21,6 +21,7 @@ namespace Content.Client.Atmos.Overlays
IoCManager.InjectDependencies(this);
_gasTileOverlaySystem = EntitySystem.Get<GasTileOverlaySystem>();
ZIndex = GasTileOverlaySystem.GasOverlayZIndex;
}
protected override void Draw(in OverlayDrawArgs args)
@@ -46,8 +47,6 @@ namespace Content.Client.Atmos.Overlays
}
}
}
drawHandle.SetTransform(Matrix3.Identity);
}
}
}