def draw_thing(self, thing, x_offset,y_offset):
try:
self.map_view.addch(thing.y-y_offset, thing.x-x_offset, thing.disp,
curses.color_pair(self.color_palette[thing.color]))
except curses.error: pass