11 lines
312 B
JavaScript
11 lines
312 B
JavaScript
(function () {
|
|
"use strict";
|
|
|
|
var _BattleManager_startInput = BattleManager.startInput;
|
|
BattleManager.startInput = function () {
|
|
_BattleManager_startInput.apply(this, arguments);
|
|
if (this._phase === "input" && $gameTroop.turnCount() > 0) {
|
|
BattleManager.selectNextCommand();
|
|
}
|
|
};
|
|
})();
|