1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Merge pull request #8768 from duncanspumpkin/fix_console

Fix interactive console staff set costume command.
This commit is contained in:
Duncan
2019-02-24 18:40:10 +00:00
committed by GitHub

View File

@@ -444,6 +444,7 @@ static int32_t cc_staff(InteractiveConsole& console, const arguments_t& argv)
uint8_t costume = int_val[1];
auto staffSetCostumeAction = StaffSetCostumeAction(int_val[0], costume);
GameActions::Execute(&staffSetCostumeAction);
}
}
}