container-to-container #tip typo
When tipping a magic-bag exploder from a sack or box into a bag of holding, the choice of whether to call useup() or useupf() was backwards. But nothing bad happened which is fishy.
This commit is contained in:
+1
-1
@@ -3520,7 +3520,7 @@ tipcontainer(struct obj *box) /* or bag */
|
|||||||
doname(otmp), otense(otmp, "tumble"));
|
doname(otmp), otense(otmp, "tumble"));
|
||||||
do_boh_explosion(targetbox, held);
|
do_boh_explosion(targetbox, held);
|
||||||
nobj = 0; /* stop tipping; want loop to exit 'normally' */
|
nobj = 0; /* stop tipping; want loop to exit 'normally' */
|
||||||
if (!held)
|
if (held)
|
||||||
useup(targetbox);
|
useup(targetbox);
|
||||||
else
|
else
|
||||||
useupf(targetbox, targetbox->quan);
|
useupf(targetbox, targetbox->quan);
|
||||||
|
|||||||
Reference in New Issue
Block a user