ika_bot/lib/commands/help_command.rb

17 lines
330 B
Ruby
Raw Normal View History

2025-08-15 17:03:12 -04:00
module Commands
class Help < Command
def self.command_string
"help"
end
def self.description
"Shows you a list of available commands"
end
def execute
message.respond ["I'm Ika! Here are the commands I know:",
*Commands.registered_commands.map(&:help)].join("\n")
end
end
end