Make the irc gateway not receive the last empty line on multiline messages.

This commit is contained in:
goeo_
2017-08-20 18:01:18 +03:00
parent 60fe2bc56e
commit 36d701eac1
2 changed files with 4 additions and 2 deletions

View File

@@ -1032,7 +1032,7 @@ def multiplayer(fro, chan, message):
def mpSettings():
_match = glob.matches.matches[getMatchIDFromChannel(chan)]
msg = "PLAYERS IN THIS MATCH:\n"
empty = None
empty = True
for slot in _match.slots:
if slot.user is None:
continue
@@ -1054,7 +1054,7 @@ def multiplayer(fro, chan, message):
mods=" (+ {})".format(generalUtils.readableMods(slot.mods)) if slot.mods > 0 else ""
)
if empty:
msg += "\nNobody."
msg += "Nobody.\n"
return msg