Browse Source

Increase spacing

Kirk Trombley 1 year ago
parent
commit
77242e86ec
1 changed files with 2 additions and 2 deletions
  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