Currently: Code reduces rest by -10/-5 if player has certain item
Goal: Reduce rest by -60/-50 if player has a certain item
[php]if (mysql_num_rows($result))
$rest = $REST_LOSS/2;
else
$rest = $REST_LOSS;
[/php]
What do I write in place of [php]$REST_LOSS/2[/php] to make it so that rest loss is -50 with a groom instead of half of what it normally is, as it is currently written?