01.03.2009, 11:44
At first sight i assume it's a matter of the act.jar:
030_bld House$FurnitureTreeLine 1 1234.12 56789.12 204.99
..............................................(1)....(2)
Translation in the act.jar:
boolean flag = Integer.parseInt(stringtokenizer.nextToken()) == 1;
.......................................................................(1)
double d = Double.parseDouble(stringtokenizer.nextToken());
.......................................................................(2)
I know nearly nothing about that strange and uncomfortable looking language used here, but may be tagging nextToken(2), which is the x-value of a building, fails if flag = wrong because nextToken(1) = 0?
On the other side it seems that this flag is never used again, so may be in maps it doesn't matter anyhow.
030_bld House$FurnitureTreeLine 1 1234.12 56789.12 204.99
..............................................(1)....(2)
Translation in the act.jar:
boolean flag = Integer.parseInt(stringtokenizer.nextToken()) == 1;
.......................................................................(1)
double d = Double.parseDouble(stringtokenizer.nextToken());
.......................................................................(2)
I know nearly nothing about that strange and uncomfortable looking language used here, but may be tagging nextToken(2), which is the x-value of a building, fails if flag = wrong because nextToken(1) = 0?
On the other side it seems that this flag is never used again, so may be in maps it doesn't matter anyhow.