From 7f3602f4149e9dbfc7b4f90a7f79405fd73e1e77 Mon Sep 17 00:00:00 2001 From: TehFamine Date: Fri, 27 Nov 2020 08:01:26 -0500 Subject: [PATCH] Adjusting the width of the output in CmdTime CmdTime has two table outputs that are not aligned in the same width. This change aligns the tables to the same width of 78. --- evennia/commands/default/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/system.py b/evennia/commands/default/system.py index c1145ba32d..f2e5eecbb9 100644 --- a/evennia/commands/default/system.py +++ b/evennia/commands/default/system.py @@ -956,7 +956,7 @@ class CmdTime(COMMAND_DEFAULT_CLASS): "|wIn-Game time", "|wReal time x %g" % gametime.TIMEFACTOR, align="l", - width=77, + width=78, border_top=0, ) epochtxt = "Epoch (%s)" % ("from settings" if settings.TIME_GAME_EPOCH else "server start")