lewd-hypnosis-city-hypnosm/js/plugins/OptionDelete.js
2026-04-28 07:32:15 -05:00

17 lines
No EOL
529 B
JavaScript

/*: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");
};
})();