23 lines
374 B
Python
23 lines
374 B
Python
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_Prerun import sbprerun
|
|
|
|
|
|
@sbprerun()
|
|
@plugin.command('(.*)')
|
|
def rule_command(bot, trigger, comrun):
|
|
return
|
|
|
|
|
|
@sbprerun()
|
|
@plugin.nickname_command('(.*)')
|
|
def rule_nickname_command(bot, trigger, comrun):
|
|
return
|
|
|
|
|
|
@sbprerun()
|
|
@plugin.action_command('(.*)')
|
|
def rule_action_command(bot, trigger, comrun):
|
|
return
|