Remove implicit GridId conversions (#8975)

This commit is contained in:
Leon Friedrich
2022-06-29 00:56:02 +12:00
committed by GitHub
parent 7a14c6f331
commit c13c0b8b0b
13 changed files with 33 additions and 35 deletions

View File

@@ -109,10 +109,7 @@ namespace Content.Server.Atmos.EntitySystems
private void OnGridRemoved(GridRemovalEvent ev)
{
if (_overlay.ContainsKey(ev.GridId))
{
_overlay.Remove(ev.GridId);
}
_overlay.Remove(ev.EntityUid);
}
private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)