Stop delete if already deleted (#3692)

This commit is contained in:
ShadowCommander
2021-03-17 05:06:15 -07:00
committed by GitHub
parent 585e82afe5
commit 0c0c66ff6f

View File

@@ -146,7 +146,8 @@ namespace Content.Server.GameObjects.Components.Disposal
Air.Clear();
}
Owner.Delete();
if (!Deleted)
Owner.Delete();
}
public void Update(float frameTime)