Only handle key inputs during replay

This commit is contained in:
johni0702
2015-06-04 14:50:17 +02:00
parent eaf987b403
commit 20b4c9b7bd

View File

@@ -96,6 +96,8 @@ public class KeyInputHandler {
@SubscribeEvent
public void keyInput(InputEvent.KeyInputEvent event) {
if (!ReplayHandler.isInReplay()) return;
try {
onKeyInput();
} catch(Exception e) {