diff --git a/src/game_interpreter_map.cpp b/src/game_interpreter_map.cpp index c16623309e..dd1b016f75 100644 --- a/src/game_interpreter_map.cpp +++ b/src/game_interpreter_map.cpp @@ -785,6 +785,10 @@ bool Game_Interpreter_Map::CommandEasyRpgTriggerEventAt(lcf::rpg::EventCommand c } bool Game_Interpreter_Map::CommandEasyRpgWaitForSingleMovement(lcf::rpg::EventCommand const& com) { + if (!Player::HasEasyRpgExtensions()) { + return true; + } + _state.easyrpg_parameters.resize(3); int& event_id = _state.easyrpg_parameters[0];