From 0cd979327bf1419924411d49434ee7c9d47f38d7 Mon Sep 17 00:00:00 2001 From: Ryan Stein Date: Sun, 29 Oct 2017 23:47:27 -0400 Subject: [PATCH] Fix whitespace. --- evennia/server/amp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/evennia/server/amp.py b/evennia/server/amp.py index 6cdeac5d2..0f9fec6a4 100644 --- a/evennia/server/amp.py +++ b/evennia/server/amp.py @@ -44,9 +44,9 @@ SDISCONN = b'\x05' # server session disconnect SDISCONNALL = b'\x06' # server session disconnect all SSHUTD = b'\x07' # server shutdown SSYNC = b'\x08' # server session sync -SCONN = b'\x0b' # server creating new connection (for irc bots and etc) -PCONNSYNC = b'\x0c' # portal post-syncing a session -PDISCONNALL = b'\x0d' # portal session disconnect all +SCONN = b'\x0b' # server creating new connection (for irc bots and etc) +PCONNSYNC = b'\x0c' # portal post-syncing a session +PDISCONNALL = b'\x0d' # portal session disconnect all AMP_MAXLEN = amp.MAX_VALUE_LENGTH # max allowed data length in AMP protocol (cannot be changed) BATCH_RATE = 250 # max commands/sec before switching to batch-sending