Quote:
Originally Posted by Gunderak
should probably be
PHP Code:
if(this.boots == true){
|
if (this.boots == true) is equivalent to
if (true == true) or
if (false == true), which is unnecessary, since the expression inside the brackets only needs to evaluate to true anyway.
if (this.boots) is fine.