Boomerangs should not mulch

I think this is a regression, but I didn't bother compiling an older
version to check.
This commit is contained in:
Pasi Kallinen
2024-09-28 17:50:10 +03:00
parent 9390a844f0
commit d746060d6e

View File

@@ -1948,6 +1948,7 @@ should_mulch_missile(struct obj *obj)
/* only ammo (excluding magic stones) or missiles will break */
if (!obj || !(is_ammo(obj) || is_missile(obj))
|| obj->otyp == BOOMERANG
|| objects[obj->otyp].oc_magic)
return FALSE;