From 2d1ed8ce050485f53761b6e357fcd59125444eb0 Mon Sep 17 00:00:00 2001 From: duncanspumpkin Date: Sun, 24 Feb 2019 18:10:07 +0000 Subject: [PATCH] Fix interactive console staff set costume command. After the refactor to GameActions, forgot to actually issue the command after generating it. --- src/openrct2/interface/InteractiveConsole.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2/interface/InteractiveConsole.cpp b/src/openrct2/interface/InteractiveConsole.cpp index b2358c113b..b993cd7b10 100644 --- a/src/openrct2/interface/InteractiveConsole.cpp +++ b/src/openrct2/interface/InteractiveConsole.cpp @@ -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); } } }