[shortutils] Fix make_cmd capitalization

master
MrIbby 2016-11-20 14:19:29 -08:00 committed by sfan5
parent 3936acba3f
commit 272db22465
1 changed files with 1 additions and 1 deletions

View File

@ -18,9 +18,9 @@ def make_cmd(cmd, txt):
t = txt
if input.group(2):
u = input.group(2).strip() + ", "
t = t[0].upper() + t[1:]
else:
u = ""
t = t[0].upper() + t[1:]
phenny.say(u + t)
m.commands = [cmd]
return m