124125126127128129130131132133134
if (item == null) { terminal.write( t.glyph(), x, y+1, t.color(), t.background()); } else { terminal.write( item.glyph(), x, y+1, item.color(),
130131132133134135136137138139140
} else { terminal.write( item.glyph(), x, y+1, item.color(), t.background()); } } for (Creature c : world.creatures()){ int x = c.position.x - getScrollX();