diff --git a/src/main/java/eu/crushedpixel/replaymod/gui/overlay/GuiReplayOverlay.java b/src/main/java/eu/crushedpixel/replaymod/gui/overlay/GuiReplayOverlay.java index df058ad4..22fc530e 100755 --- a/src/main/java/eu/crushedpixel/replaymod/gui/overlay/GuiReplayOverlay.java +++ b/src/main/java/eu/crushedpixel/replaymod/gui/overlay/GuiReplayOverlay.java @@ -133,6 +133,10 @@ public class GuiReplayOverlay extends Gui { this.unregister(); other.register(); ReplayMod.overlay = other; + + if (mc.currentScreen instanceof GuiMouseInput) { + mc.displayGuiScreen(new GuiMouseInput(other)); + } } }