AHAHHAHAHHA IT WAS A PARSING ERROR AHAHAHHAHA fixes the issue of dropping all words after the 16th in a msg

master
cynic 3 years ago
parent e64cdf034c
commit 8882553144
  1. 2
      message.py

@ -12,7 +12,7 @@ class message:
if msg.prefix:
raw.pop(0)
msg.command = raw[0]
msg.parameters = raw[1:][0:15]
msg.parameters = raw[1:][0:] #AHAHHAHAHAHA NEGRO WHAT THE FUCK, WAS DROPPING WORDS BECAUSE IT SAID [0:15]
except:
pass
return msg

Loading…
Cancel
Save