Originally posted by Galactic Empire
Lol wtf does === mean?So... == means that a 0 and "0" are the same thing
but
=== means that it must be a 0 and not a "0"
Nutshell is that datatypes are taken into consideration with === meaning it must be an integer to integer match and in my case the 0 points that I was capturing was a string so integer === string returned a false and failed.
fun times
