From: nethack.allison Date: Wed, 15 Oct 2003 12:37:39 +0000 (+0000) Subject: dipping non-weapon iron in fountain follow-up patch correction X-Git-Tag: MOVE2GIT~1691 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=427ec9f626d7329f41901ac65824eb840570b04c;p=nethack dipping non-weapon iron in fountain follow-up patch correction --- diff --git a/src/potion.c b/src/potion.c index fed833a8c..80f31566c 100644 --- a/src/potion.c +++ b/src/potion.c @@ -1567,19 +1567,6 @@ dodip() return 1; } break; - case WEAPON_CLASS: - /* Just "fall through" to generic rustprone check for now. */ - /* fall through */ - default: - if (!obj->oerodeproof && is_rustprone(obj) && - (obj->oeroded < MAX_ERODE) && !rn2(2)) { - pline("%s %s some%s.", - Your_buf, aobjnam(obj, "rust"), - obj->oeroded ? " more" : "what"); - obj->oeroded++; - update_inventory(); - return TRUE; - } else break; } if(!(potion = getobj(beverages, "dip into")))