Quote:
Originally Posted by Gunderak
Not a bad start, this
PHP Code:
if(this.boots) {
should probably be
PHP Code:
if(this.boots == true){
|
Probably?
If this.boots is true, his way would essentially be doing:
PHP Code:
if(true){
//stuff
}
Which is basically what if(condition){} is for.