class Window_MenuCommand def add_main_commands add_command(Vocab::item, :item, main_commands_enabled) # add_command(Vocab::skill, :skill, main_commands_enabled) add_command(Vocab::equip, :equip, main_commands_enabled) add_command(Vocab::status, :status, main_commands_enabled) end def add_formation_command # add_command(Vocab::formation, :formation, formation_enabled) end end
class Window_MenuCommand
def add_main_commands
add_command(Vocab::item, :item, main_commands_enabled)
# add_command(Vocab::skill, :skill, main_commands_enabled)
add_command(Vocab::equip, :equip, main_commands_enabled)
add_command(Vocab::status, :status, main_commands_enabled)
end
def add_formation_command
# add_command(Vocab::formation, :formation, formation_enabled)
end
end
|