Polar Aerodrome moved to hidden sector

This commit is contained in:
Anuken
2026-01-11 18:55:04 -05:00
parent 038b549e03
commit e658a430f4
8 changed files with 9 additions and 10 deletions

View File

@@ -51,6 +51,9 @@ public class TiledFloor extends Floor{
@Override
public void floorChanged(Tile tile){
//TODO: none of this state needs to update on servers right now, but it could cause issues if blocks require a certain alignment
//either way, this wouldn't be called on map load on servers, so it's broken there
if(headless) return;
if(!world.isGenerating() && TiledState.changes(state(tile)) != world.floorChanges){
scan(tile);

View File

@@ -50,7 +50,7 @@ public class TiledWall extends StaticWall{
@Override
public void blockChanged(Tile tile){
super.blockChanged(tile);
if(headless) return;
if(!world.isGenerating() && TiledState.changes(state(tile)) != world.tileChanges){
scan(tile);