test
This commit is contained in:
parent
bde95931bb
commit
3ad24c1318
@ -9,7 +9,7 @@ from sopel_SpiceBot_Core_Prerun import prerun_nickname_command
|
||||
|
||||
@prerun_nickname_command()
|
||||
@plugin.nickname_command('test')
|
||||
def sb_nickname_command(bot, trigger):
|
||||
def sb_test_commands(bot, trigger):
|
||||
bot.say("Testing the bot")
|
||||
bot.say("Attributes: %s" % [x for x in dir(sb) if not x.startswith("__")])
|
||||
bot.say("%s" % sb.versions.dict)
|
||||
@ -18,7 +18,21 @@ def sb_nickname_command(bot, trigger):
|
||||
|
||||
|
||||
@prerun_nickname_command()
|
||||
@plugin.nickname_command('fart')
|
||||
def sb_fart_command(bot, trigger):
|
||||
@plugin.nickname_command('commands')
|
||||
def sopel_commands(bot, trigger):
|
||||
|
||||
bot.say(str(sb.commands.sopel_commands))
|
||||
|
||||
|
||||
@prerun_nickname_command()
|
||||
@plugin.nickname_command('nickname_commands')
|
||||
def sopel_nickname_commands(bot, trigger):
|
||||
|
||||
bot.say(str(sb.commands.sopel_nickname_commands))
|
||||
|
||||
|
||||
@prerun_nickname_command()
|
||||
@plugin.nickname_command('actio_commands')
|
||||
def sopel_action_commands(bot, trigger):
|
||||
|
||||
bot.say(str(sb.commands.action_nickname_commands))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user