From 74b0e9841fb7056f4c5cd41de890db08c6c9bc0a Mon Sep 17 00:00:00 2001 From: Rob Pearce Date: Thu, 9 Jun 2016 10:52:48 +1000 Subject: [PATCH] Modify getbreakob() to produce less objects - a burned giant newt corpse was turning into ~38 piles of ash! --- objects.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects.c b/objects.c index 3c83283..d35e18c 100644 --- a/objects.c +++ b/objects.c @@ -4675,7 +4675,7 @@ int getbreakob(object_t *o, char *bigobname, char *smallobname) { small = findot(smalloid); // now find out how many big obejcts make up the wight. - weight = getobmass(o) / 2; + weight = getobmass(o) / 3; if (big) { nbig = weight / big->weight; weight -= (nbig*big->weight);