dipping acid in a fountain
<Someone> reported that dipping acid in a fountain did not always destroy the acid. It might be best to have get_wet call useup in this case, but that would require more work.
This commit is contained in:
@@ -391,13 +391,12 @@ register struct obj *obj;
|
||||
if(in_town(u.ux, u.uy))
|
||||
(void) angry_guards(FALSE);
|
||||
return;
|
||||
} else if (get_wet(obj) && !rn2(2))
|
||||
} else if (get_wet(obj)) {
|
||||
if (obj->otyp == POT_ACID) { /* Acid and water don't mix */
|
||||
useup(obj);
|
||||
return;
|
||||
} else if (!rn2(2)) /* no further effect */
|
||||
return;
|
||||
|
||||
/* Acid and water don't mix */
|
||||
if (obj->otyp == POT_ACID) {
|
||||
useup(obj);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (rnd(30)) {
|
||||
|
||||
Reference in New Issue
Block a user