Melded pudding object may be gone

This commit is contained in:
Pasi Kallinen
2015-05-04 22:19:32 +03:00
parent e2e269504c
commit 766d874a47
+1 -1
View File
@@ -218,7 +218,7 @@ const char *verb;
/* Globby things like puddings might stick together */ /* Globby things like puddings might stick together */
while (obj && (otmp = obj_nexto_xy(obj->otyp, x, y, obj->o_id)) != (struct obj*)0) { while (obj && (otmp = obj_nexto_xy(obj->otyp, x, y, obj->o_id)) != (struct obj*)0) {
pudding_merge_message(obj, otmp); pudding_merge_message(obj, otmp);
obj_meld(&obj, &otmp); obj = obj_meld(&obj, &otmp);
} }
return (obj == NULL); return (obj == NULL);
} }