What in the world is this???
Code:
equali("rr", cmd[cmd[0] == '!' || cmd[0] == '/' || cmd[0] == '.'])
EDIT:
I figured it out. This bool/int conversion assumption is annoying sometimes. It will also return true if you say "rr".
You should probably change it to:
Code:
equali("rr", cmd[!!(cmd[0] == '!' || cmd[0] == '/' || cmd[0] == '.')])
__________________