class Window_ActorCommand def add_skill_commands @actor.added_skill_types.sort.each do |stype_id| if stype_id!=(5) and stype_id!=(6) name = $data_system.skill_types[stype_id] add_command(name, :skill, true, stype_id) end end end end
class Window_ActorCommand
def add_skill_commands
@actor.added_skill_types.sort.each do |stype_id|
if stype_id!=(5) and stype_id!=(6)
name = $data_system.skill_types[stype_id]
add_command(name, :skill, true, stype_id)
end
end
end
end
|