Kirk Trombley пре 1 година
родитељ
комит
77242e86ec
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      commands/commands/simple.py

+ 2 - 2
commands/commands/simple.py

@@ -129,12 +129,12 @@ HOUSE_BOT = """
 
 @as_command
 def appreciate(args: Args):
-    return HOUSE_TOP + (" " * (10 - len(args))) + args + HOUSE_BOT
+    return HOUSE_TOP + (" " * (20 - len(args))) + args + HOUSE_BOT
 
 
 @as_command
 def stfu(args: Args):
-    return STFU_TOP + (" " * (10 - len(args))) + args + HOUSE_BOT
+    return STFU_TOP + (" " * (20 - len(args))) + args + HOUSE_BOT
 
 
 @as_command