map editor/main.cpp: mark this stone as unharvestable

This makes it more clear that this particlular stone is unharvestable.
Usually people can figure it out after their map has unharvestable stone
where they wanted harvestable stone to be, but this maybe will help new
map-makers.
This commit is contained in:
andy5995 2019-05-06 01:11:29 -05:00
parent aec1e6d416
commit 7ce848505b
No known key found for this signature in database
GPG Key ID: 06BFEC9B82603CAF
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ void MainWindow::init(string fname) {
menuBrushObject->AppendSeparator();
menuBrushObject->AppendCheckItem(miBrushObject+2, wxT("&Tree (harvestable)"));
menuBrushObject->AppendCheckItem(miBrushObject+3, wxT("&Dead tree/Cactuses/Thornbush"));
menuBrushObject->AppendCheckItem(miBrushObject+4, wxT("&Stone"));
menuBrushObject->AppendCheckItem(miBrushObject+4, wxT("&Stone (unharvestable)"));
menuBrushObject->AppendCheckItem(miBrushObject+5, wxT("&Bush/Grass/Fern (walkable)"));
menuBrushObject->AppendCheckItem(miBrushObject+6, wxT("&Water object/Reed/Papyrus (walkable)"));
menuBrushObject->AppendCheckItem(miBrushObject+7, wxT("Big tree/&Old palm"));