(svn r9901) -Codechange: Decide what to do with selected land areas based on the specific variable, not how it was highlighted.
This commit is contained in:
@@ -382,7 +382,7 @@ static void BuildTreesWndProc(Window *w, WindowEvent *e)
|
||||
} break;
|
||||
|
||||
case WE_PLACE_OBJ:
|
||||
VpStartPlaceSizing(e->we.place.tile, VPM_X_AND_Y_LIMITED, GUI_PlaceProc_None);
|
||||
VpStartPlaceSizing(e->we.place.tile, VPM_X_AND_Y_LIMITED, DDSP_PLANT_TREES);
|
||||
VpSetPlaceSizingLimit(20);
|
||||
break;
|
||||
|
||||
@@ -391,7 +391,7 @@ static void BuildTreesWndProc(Window *w, WindowEvent *e)
|
||||
return;
|
||||
|
||||
case WE_PLACE_MOUSEUP:
|
||||
if (e->we.place.pt.x != -1) {
|
||||
if (e->we.place.pt.x != -1 && e->we.place.select_proc == DDSP_PLANT_TREES) {
|
||||
DoCommandP(e->we.place.tile, _tree_to_plant, e->we.place.starttile, NULL,
|
||||
CMD_PLANT_TREE | CMD_AUTO | CMD_MSG(STR_2805_CAN_T_PLANT_TREE_HERE));
|
||||
}
|
||||
|
Reference in New Issue
Block a user