View Single Post
  #2  
Old 01-11-2006, 04:40 PM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
Quote:
Originally Posted by jake13jake
this.mode != "jumping"
is not the same as !this.mode == "jumping"
apparently.
and it shouldn't be. You are saying the not of this.mode (which is a boolean) equals jumping (which is a string) So it -should- always return false, no matter what. To fix this just do: !(this.mode == "jumping")
__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote