B20007 age of potion of oil from bones

First From a bug report.4.1 beta 20.
This commit is contained in:
nethack.allison
2003-03-17 01:20:41 +00:00
parent 4cf1b2964d
commit 96b149208f
5 changed files with 21 additions and 21 deletions

View File

@@ -485,14 +485,7 @@ obj_is_burning(obj)
struct obj *obj;
{
return (obj->lamplit &&
( obj->otyp == MAGIC_LAMP
|| obj->otyp == BRASS_LANTERN
|| obj->otyp == OIL_LAMP
|| obj->otyp == CANDELABRUM_OF_INVOCATION
|| obj->otyp == TALLOW_CANDLE
|| obj->otyp == WAX_CANDLE
|| obj->otyp == POT_OIL
|| artifact_light(obj)));
(obj->otyp == MAGIC_LAMP || ignitable(obj) || artifact_light(obj)));
}
/* copy the light source(s) attachted to src, and attach it/them to dest */