Orion, Norn, Cyclops and Lord Surtur should be able to tear webs
ensure monsters cannot teleport to or be created outside nonpassable bounds
of special levels
+candles should not be fireproof
Platform- and/or Interface-Specific Fixes
avoid inappropriate message when using a cursed lamp while blind
player polymorphed as a guardian naga spit the wrong kind of venom
put #define for potion occupant chance and cursed wand zap chance in one place
+candles should not be fireproof
Platform- and/or Interface-Specific Fixes
int otyp = otmp->otyp;
int omat = objects[otyp].oc_material;
+ /* Candles can be burned, but they're not flammable in the sense that
+ * they can't get fire damage and it makes no sense for them to be
+ * fireproofed.
+ */
+ if (Is_candle(otmp))
+ return FALSE;
+
if (objects[otyp].oc_oprop == FIRE_RES || otyp == WAN_FIRE)
return FALSE;