SpiceBot/spicebot_command_lower/__init__.py
deathbybandaid 570b7c7148 test
2023-01-24 10:57:37 -05:00

13 lines
241 B
Python

from sopel import plugin
from sopel_SpiceBot_Core_Prerun import sbprerun
@sbprerun()
@plugin.nickname_command('lower')
@plugin.command('lower')
def lower(bot, trigger, comrun):
comrun.say(str(comrun.command["trigger_str"]).lower())