fix issue #333 - obsolete "green slime corpse"
Issue was for dropping glob of green slime while swallowed by a purple worm but also applied to pet eating habits. Green slime corpse doesn't exist any more; check for glob instead. Fixes #333
This commit is contained in:
@@ -220,7 +220,7 @@ boolean devour;
|
||||
deadmimic = (obj->otyp == CORPSE && (obj->corpsenm == PM_SMALL_MIMIC
|
||||
|| obj->corpsenm == PM_LARGE_MIMIC
|
||||
|| obj->corpsenm == PM_GIANT_MIMIC));
|
||||
slimer = (obj->otyp == CORPSE && obj->corpsenm == PM_GREEN_SLIME);
|
||||
slimer = (obj->otyp == GLOB_OF_GREEN_SLIME);
|
||||
poly = polyfodder(obj);
|
||||
grow = mlevelgain(obj);
|
||||
heal = mhealup(obj);
|
||||
|
||||
Reference in New Issue
Block a user