- Joined
- Feb 22, 2016
- Messages
- 1,626
- Reaction score
- 1,195
- First Language
- English
- Primarily Uses
- RMMV
So I just got around to enabling this plugin but noticed that the "Credits" option is placed between "Continue" & "Options". I was wondering if there was a way to put "Credits" as the last option.
Screenshot:

Relevant code:
Screenshot:

Relevant code:
JavaScript:
//=============================================================================
// Window_TitleCommand
//=============================================================================
Yanfly.Credits.Window_TitleCommand_makeCommandList =
Window_TitleCommand.prototype.makeCommandList;
Window_TitleCommand.prototype.makeCommandList = function() {
Yanfly.Credits.Window_TitleCommand_makeCommandList.call(this);
var index = this.findSymbol('options');
var text = Yanfly.Param.CreditsCmdName;
var enabled = true;
this.addCommandAt(index, text, 'credits', enabled);
};

