OK, what did I do wrong here? Check the attached file for more info.
class Window_MenuCommand < Window_Command #-------------------------------------------------------------------------- # * Add Exit Game to Command List #-------------------------------------------------------------------------- def add_game_end_command add_command("System", :system) add_command(Vocab::game_end, :game_end) end #-------------------------------------------------------------------------- # * Add Formation to Command List #-------------------------------------------------------------------------- def add_formation_command #add_command(Vocab::formation, :formation, formation_enabled) endendclass Scene_Menu < Scene_MenuBase #-------------------------------------------------------------------------- # * Create Command Window #-------------------------------------------------------------------------- alias starwarrior_reorder_create_command_window create_command_window def create_command_window starwarrior_reorder_create_command_window @command_window.set_handler

system, method

command_system)) end #-------------------------------------------------------------------------- # * [Exit Game] Command #-------------------------------------------------------------------------- def command_game_end SceneManager.call(Scene_End) end #-------------------------------------------------------------------------- # * [System] Command #-------------------------------------------------------------------------- def command_system SceneManager.call(Scene_System) endend
