diff --git a/src/main/java/eu/crushedpixel/replaymod/replay/ReplayProcess.java b/src/main/java/eu/crushedpixel/replaymod/replay/ReplayProcess.java index 17807bb1..375a3371 100755 --- a/src/main/java/eu/crushedpixel/replaymod/replay/ReplayProcess.java +++ b/src/main/java/eu/crushedpixel/replaymod/replay/ReplayProcess.java @@ -183,7 +183,9 @@ public class ReplayProcess { Display.setResizable(true); //restore the sound settings - mc.gameSettings.mapSoundLevels = mapSoundLevelsBefore; + if (mapSoundLevelsBefore != null) { + mc.gameSettings.mapSoundLevels = mapSoundLevelsBefore; + } } //if justCheck is true, no Screenshot will be taken, it will only be checked