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:
jason@long.name 2013-07-20 21:10:44 +00:00
parent c2cfeb540c
commit 92ba9642f2

View file

@ -70,7 +70,7 @@ public class TileSpec
}
}
this.canBurn = getBooleanAttribute("noburn");
this.canBurn = !getBooleanAttribute("noburn");
this.zone = getBooleanAttribute("zone");
}