浏览代码

Increase spacing

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