17 lines
No EOL
529 B
JavaScript
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");
|
|
};
|
|
|
|
})(); |