Removed "on" prefix from all remote methods

This commit is contained in:
Anuken
2020-07-03 18:48:31 -04:00
parent 7ff2e98420
commit 8576d535bd
22 changed files with 108 additions and 84 deletions

View File

@@ -210,11 +210,11 @@ public class BlockIndexer{
}
public void notifyTileDamaged(Building entity){
if(damagedTiles[(int)entity.team().id] == null){
damagedTiles[(int)entity.team().id] = new TileArray();
if(damagedTiles[entity.team().id] == null){
damagedTiles[entity.team().id] = new TileArray();
}
TileArray set = damagedTiles[(int)entity.team().id];
TileArray set = damagedTiles[entity.team().id];
set.add(entity.tile());
}