moved keybind readin to postinit
This commit is contained in:
parent
540beb8480
commit
4de6e2c091
1 changed files with 1 additions and 2 deletions
|
@ -109,7 +109,6 @@ public class ClientProxy extends CommonProxy {
|
|||
super.registerHandlers();
|
||||
keybindHandler = new KeybindKeyHandler();
|
||||
KeyBindingRegistry.registerKeyBinding(keybindHandler);
|
||||
KeybindManager.readInKeybinds();
|
||||
|
||||
playerTickHandler = new PlayerTickHandler();
|
||||
TickRegistry.registerTickHandler(playerTickHandler, Side.CLIENT);
|
||||
|
@ -127,6 +126,6 @@ public class ClientProxy extends CommonProxy {
|
|||
|
||||
@Override
|
||||
public void postInit() {
|
||||
|
||||
KeybindManager.readInKeybinds();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue