We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c660f commit af9c77cCopy full SHA for af9c77c
src/game_interpreter.cpp
@@ -197,7 +197,7 @@ void Game_Interpreter::Update() {
197
break;
198
}
199
200
- if (Game_Temp::battle_calling ||
+ if ((Game_Temp::battle_calling && !Game_Temp::battle_running) ||
201
Game_Temp::shop_calling ||
202
// Game_Temp::inn_calling ||
203
Game_Temp::name_calling ||
src/scene_map.cpp
@@ -165,7 +165,6 @@ void Scene_Map::Update() {
165
166
if (Game_Temp::battle_calling) {
167
CallBattle();
168
- Game_Temp::battle_calling = false;
169
return;
170
171
0 commit comments