Add support for grid chunk removals (#1941)

* Add support for grid chunk removals

Also allows grids to be removed when they have no more chunks remaining.

* No more crashing pog

* Slightly better

* Minor optimisations and fix bounds

* Avoid creating new chunks for anchoring

* chucky

* comment

* Tests

* Remove some logs

* Remove another log

* Review
This commit is contained in:
metalgearsloth
2021-08-23 16:00:07 +10:00
committed by GitHub
parent 80a9a82278
commit d72185933a
20 changed files with 361 additions and 37 deletions
@@ -0,0 +1,9 @@
using Robust.Shared.GameObjects;
namespace Robust.Client.GameObjects
{
internal sealed class MapSystem : SharedMapSystem
{
}
}