Fix interactive console staff set costume command.

After the refactor to GameActions, forgot to actually issue the command after generating it.
This commit is contained in:
duncanspumpkin 2019-02-24 18:10:07 +00:00
parent 8def463360
commit 2d1ed8ce05
1 changed files with 1 additions and 0 deletions

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);
}
}
}