Skip to content

Commit

Permalink
The Candle of Eternal Flame grants cold resistance (again).
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Oct 12, 2023
1 parent 6fe8a7d commit e013f7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/artilist.h
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ STATIC_OVL NEARDATA struct artifact artilist[] = {
A("The Candle of Eternal Flame", MAGIC_CANDLE,
(SPFX_NOGEN | SPFX_RESTR | SPFX_INTEL),
(SPFX_WARN | SPFX_TCTRL), 0,
NO_ATTK, NO_DFNS, CARY(AD_FIRE), SUMMON_FIRE_ELEMENTAL,
NO_ATTK, NO_DFNS, CARY(AD_COLD), SUMMON_FIRE_ELEMENTAL,
A_LAWFUL, PM_FLAME_MAGE, NON_PM, 5000L, NO_COLOR, DEFAULT_MAT),

A("The Staff of Aesculapius", QUARTERSTAFF,
Expand Down
2 changes: 1 addition & 1 deletion src/worn.c
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,6 @@ struct obj *obj;
|| wielding_artifact(ART_BALMUNG)
|| wielding_artifact(ART_HELLFIRE)
|| wearing_artifact(ART_MITRE_OF_HOLINESS)
|| carrying_arti(ART_CANDLE_OF_ETERNAL_FLAME)
|| (u.twoweap && uswapwep->oprops & ITEM_FIRE)
|| (uwep && uwep->oprops & ITEM_FIRE)) ? 25 : 5;
break;
Expand All @@ -1487,6 +1486,7 @@ struct obj *obj;
|| wielding_artifact(ART_FROST_BRAND)
|| wielding_artifact(ART_DEEP_FREEZE)
|| carrying_arti(ART_HAND_OF_VECNA)
|| carrying_arti(ART_CANDLE_OF_ETERNAL_FLAME)
|| (u.twoweap && uswapwep->oprops & ITEM_FROST)
|| (uwep && uwep->oprops & ITEM_FROST)) ? 25 : 5;
break;
Expand Down

0 comments on commit e013f7c

Please sign in to comment.