I've just a little question: Is there any remarkable performance difference between an Integer Comparision and a Boolean Comparision?
f.e:

JASS:
if (myBool == false) then
...
endifvs

JASS:
if (myInt == 1) then
...
endif There's nothing around it, i just want to know this

And, if there's a difference, how serious is it?