tiles.rc: move CONDBIT knowledge from source code to tiles.rc
git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@746 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
parent
b65e83ec79
commit
68717e3ea6
8 changed files with 56 additions and 53 deletions
|
@ -7,6 +7,7 @@ public class TileSpec
|
|||
int tileNumber;
|
||||
TileSpec animNext;
|
||||
boolean canBurn;
|
||||
boolean canConduct;
|
||||
boolean zone;
|
||||
|
||||
Map<String,String> attributes;
|
||||
|
@ -71,6 +72,7 @@ public class TileSpec
|
|||
}
|
||||
|
||||
this.canBurn = !getBooleanAttribute("noburn");
|
||||
this.canConduct = getBooleanAttribute("conducts");
|
||||
this.zone = getBooleanAttribute("zone");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue