diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java index 7ee8d832e..9043d0449 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java @@ -55,7 +55,8 @@ public class Shadows extends Invisibility { public boolean attachTo( Char target ) { if (super.attachTo( target )) { Sample.INSTANCE.play( Assets.SND_MELD ); - Dungeon.observe(); + if (Dungeon.level != null) + Dungeon.observe(); return true; } else { return false;