We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9154831 commit 5eabe87Copy full SHA for 5eabe87
src/game_interpreter.cpp
@@ -4646,7 +4646,8 @@ bool Game_Interpreter::CommandManiacCallCommand(lcf::rpg::EventCommand const&) {
4646
}
4647
4648
bool Game_Interpreter::CommandSetGameSpeed(lcf::rpg::EventCommand const& com) {
4649
- int32_t speed = ValueOrVariable(com.parameters[0], com.parameters[1]);
+ int32_t speed = ValueOrVariable(com.parameters[0], com.parameters[1]) * Game_Clock::GetGameSpeedFactor();
4650
+ if (speed > 100) speed = 100;
4651
Game_Clock::SetGameSpeedFactor(speed);
4652
return true;
4653
0 commit comments