Skip to content

Commit

Permalink
Don't draw item glyphs on top of furniture glyphs.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade committed Jul 18, 2013
1 parent f830f19 commit 401dd4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3247,7 +3247,7 @@ void map::drawsq(WINDOW* w, player &u, const int x, const int y, const bool inve
}
// If there's items here, draw those instead
if (show_items && !has_flag(container, x, y) && curr_items.size() > 0 && !drew_field) {
if (terlist[curr_ter].sym != '.')
if (sym != '.')
hi = true;
else {
tercol = curr_items[curr_items.size() - 1].color();
Expand Down

0 comments on commit 401dd4c

Please sign in to comment.