Quote:
|
Originally Posted by jake13jake
this.mode != "jumping"
is not the same as !this.mode == "jumping"
apparently.
|
Why would it be?
Unless you're surrounding it with brackets, it's treating !this.mode == "jumping" effectively as
Not this.mode equal to "jumping", which probably will be even more senseless as "jumping" is not a boolean.