11 lines
189 B
Ruby
11 lines
189 B
Ruby
Client.register_command("reload") { |args|
|
|
Client.load_plugins
|
|
|
|
"plugins reloaded..."
|
|
}
|
|
|
|
Client.register_command("load") { |args|
|
|
Client.load_config
|
|
|
|
"config reloaded..."
|
|
}
|