1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 01:16:50 +00:00

removed double drawing of items in minimap

This commit is contained in:
Zeno Rogue 2019-05-24 21:42:43 +02:00
parent 5483ec8779
commit 7498db911d

View File

@ -808,7 +808,7 @@ bool drawItemType(eItem it, cell *c, const transmatrix& V, color_t icol, int pti
poly_outline = kind_outline(it);
#if MAXMDIM >= 4
if(c && DIM == 3) addradar(V, iinf[it].glyph, icol, kind_outline(it));
if(c && WDIM == 3) addradar(V, iinf[it].glyph, icol, kind_outline(it));
#endif
if(DIM == 3 && mapeditor::drawUserShape(V, mapeditor::sgItem, it, darkena(icol, 0, 0xFF), c)) return false;