Sync "Raise / lower guest initial hunger"

This commit is contained in:
wolfreak99 2017-02-23 09:33:34 -05:00 committed by Michael Steenbeek
parent 48ad60308e
commit 6baf971eba
2 changed files with 19 additions and 3 deletions

View File

@ -600,7 +600,7 @@ void game_command_edit_scenario_options(sint32* eax, sint32* ebx, sint32* ecx, s
gGuestInitialHappiness = max(40, min(250, *edx));
break;
case EDIT_SCENARIOOPTIONS_SETGUESTINITIALHUNGER:
gGuestInitialHunger = max(40, min(250, *edx));
break;
case EDIT_SCENARIOOPTIONS_SETGUESTINITIALTHIRST:

View File

@ -927,7 +927,15 @@ static void window_editor_scenario_options_guests_mousedown(sint32 widgetIndex,
break;
case WIDX_GUEST_INITIAL_HUNGER_INCREASE:
if (gGuestInitialHunger > 40) {
gGuestInitialHunger -= 4;
game_do_command(
0,
GAME_COMMAND_FLAG_APPLY,
EDIT_SCENARIOOPTIONS_SETGUESTINITIALHUNGER,
gGuestInitialHunger - 4,
GAME_COMMAND_EDIT_SCENARIO_OPTIONS,
0,
0
);
} else {
window_error_open(STR_CANT_INCREASE_FURTHER, STR_NONE);
}
@ -935,7 +943,15 @@ static void window_editor_scenario_options_guests_mousedown(sint32 widgetIndex,
break;
case WIDX_GUEST_INITIAL_HUNGER_DECREASE:
if (gGuestInitialHunger < 250) {
gGuestInitialHunger += 4;
game_do_command(
0,
GAME_COMMAND_FLAG_APPLY,
EDIT_SCENARIOOPTIONS_SETGUESTINITIALHUNGER,
gGuestInitialHunger + 4,
GAME_COMMAND_EDIT_SCENARIO_OPTIONS,
0,
0
);
} else {
window_error_open(STR_CANT_REDUCE_FURTHER, STR_NONE);
}