Use define for iron ball weight increment

This commit is contained in:
Pasi Kallinen
2016-01-06 16:23:48 +02:00
parent da0e660110
commit c740425a90
4 changed files with 7 additions and 4 deletions

View File

@@ -2271,7 +2271,7 @@ struct obj *sobj;
You("are being punished for your misbehavior!");
if (Punished) {
Your("iron ball gets heavier.");
uball->owt += 160 * (1 + sobj->cursed);
uball->owt += IRON_BALL_W_INCR * (1 + sobj->cursed);
return;
}
if (amorphous(youmonst.data) || is_whirly(youmonst.data)