mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 12:19:18 +00:00
draw: 'statue' displayed when editing statues; floors display 'pick something' in 3D
This commit is contained in:
parent
995fea41b4
commit
90b206dec3
@ -1251,7 +1251,14 @@ namespace mapeditor {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case sgFloor:
|
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 = "#" + its(drawcellShapeID());
|
||||||
/* line2 = XLAT(ishept(drawcell) ? "heptagonal" :
|
/* line2 = XLAT(ishept(drawcell) ? "heptagonal" :
|
||||||
ishex1(drawcell) ? "hexagonal #1" : "hexagonal"); */
|
ishex1(drawcell) ? "hexagonal #1" : "hexagonal"); */
|
||||||
|
Loading…
Reference in New Issue
Block a user