227228229230231232233234235236237
screen.drawWall(object); } } else if (object.get("type").equals(consts.TYPE_ZONECHANGE)) { screen.addZoneChange(new ZoneChangePoint(object)); } else if (object.get("type").equals(consts.TYPE_EATENSIGN)) { screen.addEatenSign(object); }
176177178179180181182183184185186187188
} else { // ZoneChange Point if (currentItem>=48 && currentItem<=57) { ZoneChangePoint point = new ZoneChangePoint(this,zoneChangeNames.get(currentItem-48),xpos,ypos); zoneChangePoints.add(point); world.add(point.getRPObject()); } } } } ypos++;