Closed awilbur closed 7 years ago
Sometimes people accidentally put more than 1 space in their bot commands. This screws things up since we use .split(' '), on a single space.
.split(' ')
This PR just replaces any multiple spaces with 1 space, tada
Sometimes people accidentally put more than 1 space in their bot commands. This screws things up since we use
.split(' ')
, on a single space.This PR just replaces any multiple spaces with 1 space, tada