mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-02 02:37:55 +00:00
draw: 'statue' displayed when editing statues; floors display 'pick something' in 3D
This commit is contained in:
@@ -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"); */
|
||||
|
Reference in New Issue
Block a user