/*:ja * @plugindesc タイトルのオプションを消します * @author mijiishi * * @help このプラグインには、プラグインコマンドはありません。 */ (function() { Window_TitleCommand.prototype.makeCommandList = function() { const continueEnabled = this.isContinueEnabled(); this.addCommand(TextManager.newGame, "newGame"); this.addCommand(TextManager.continue_, "continue", continueEnabled); // this.addCommand(TextManager.options, "options"); }; })();