diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Radiance.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Radiance.java index 5e5c1faa8..72faa506f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Radiance.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Radiance.java @@ -56,7 +56,7 @@ public class Radiance extends ClericSpell { Sample.INSTANCE.play(Assets.Sounds.BLAST); if (Dungeon.level.viewDistance < 6 ){ - Buff.affect(hero, Light.class, Dungeon.isChallenged(Challenges.DARKNESS) ? 20 : 100); + Buff.prolong(hero, Light.class, Dungeon.isChallenged(Challenges.DARKNESS) ? 20 : 100); } for (Mob mob : Dungeon.level.mobs.toArray( new Mob[0] )) {