Skip to content

Commit d825e52

Browse files
committed
Merge branch 'draw_stairs'
2 parents 60a8826 + 1b03071 commit d825e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roguebasin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ def make_map():
606606

607607
# Create stairs at the center of the last room
608608
stairs = Object(new_x, new_y, '<', 'stairs', libtcod.white, always_visible=True)
609-
objects.append(stairs)
609+
objects.insert(0, stairs)
610610

611611
# Create a room in the map
612612
def create_room(room):

0 commit comments

Comments
 (0)