SpiceBot/spicebot_command_lower/__init__.py
deathbybandaid f2fdcab729 test
2022-02-22 14:40:42 -05:00

12 lines
209 B
Python

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