diff --git a/src/main/java/forge/sound/EventVisualizer.java b/src/main/java/forge/sound/EventVisualizer.java index cbd228aa644..219f827b72a 100644 --- a/src/main/java/forge/sound/EventVisualizer.java +++ b/src/main/java/forge/sound/EventVisualizer.java @@ -38,7 +38,7 @@ public class EventVisualizer extends IGameEventVisitor.Base { public SoundEffectType visit(GameEventCardDestroyed event) { return SoundEffectType.Destroy; } public SoundEffectType visit(GameEventCardEquipped event) { return SoundEffectType.Equip; } public SoundEffectType visit(GameEventCardChangeZone event) { - ZoneType from = event.from.getZoneType(); + ZoneType from = event.from == null ? null : event.from.getZoneType(); ZoneType to = event.to.getZoneType(); if( from == ZoneType.Library && to == ZoneType.Hand) return SoundEffectType.Draw;