draw: 'statue' displayed when editing statues; floors display 'pick something' in 3D

This commit is contained in:
Zeno Rogue 2019-05-15 17:41:57 +02:00
parent 995fea41b4
commit 90b206dec3
1 changed files with 8 additions and 1 deletions

View File

@ -1251,7 +1251,14 @@ namespace mapeditor {
break;
case sgFloor:
line1 = XLAT("floor");
line1 = DIM == 3 ? XLAT("pick something") : XLAT("floor");
line2 = "#" + its(drawcellShapeID());
/* line2 = XLAT(ishept(drawcell) ? "heptagonal" :
ishex1(drawcell) ? "hexagonal #1" : "hexagonal"); */
break;
case sgWall:
line1 = XLAT("statue");
line2 = "#" + its(drawcellShapeID());
/* line2 = XLAT(ishept(drawcell) ? "heptagonal" :
ishex1(drawcell) ? "hexagonal #1" : "hexagonal"); */