TileSpec: fix bug with parsing of 'noburn'
git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@744 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
parent
c2cfeb540c
commit
92ba9642f2
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ public class TileSpec
|
|||
}
|
||||
}
|
||||
|
||||
this.canBurn = getBooleanAttribute("noburn");
|
||||
this.canBurn = !getBooleanAttribute("noburn");
|
||||
this.zone = getBooleanAttribute("zone");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue