Quote:
Originally Posted by Bugsy
What are your intentions with this?
PHP Code:
if( !is_user_connected( attacker ) || inflictor != attacker )
return HAM_IGNORED;
|
Checking if attacker is connected and the damage is done by the attacker !
is something wrong ?
Or should I only write ?
PHP Code:
if( inflictor != attacker )
return HAM_IGNORED;