Fix gas pipe leaking when unanchoring or breaking them (#33774)

* fix gas pipe unanchoring

* remove unneeded update

* revert popup change
This commit is contained in:
slarticodefast
2024-12-09 00:20:04 +01:00
committed by GitHub
parent c4556fcbfe
commit ede8a1d377
2 changed files with 30 additions and 24 deletions

View File

@@ -149,6 +149,13 @@ namespace Content.Server.NodeContainer.EntitySystems
}
}
// used to manually force an update for the groups
// the VisDoUpdate will be done with the next scheduled update
public void ForceUpdate()
{
DoGroupUpdates();
}
private void DoGroupUpdates()
{
// "Why is there a separate queue for group remakes and node refloods when they both cause eachother"