Commit 7a912de0493eb65405889532489eb1a627d6ed40
1 parent
88de6d81
fix failing to register common interfaces in client event handler
Showing
1 changed file
with
2 additions
and
0 deletions
java/client/com/mumfrey/liteloader/client/ClientEvents.java
... | ... | @@ -204,6 +204,8 @@ public class ClientEvents extends Events<Minecraft, IntegratedServer> |
204 | 204 | @Override |
205 | 205 | public void registerInterfaces(InterfaceRegistrationDelegate delegate) |
206 | 206 | { |
207 | + super.registerInterfaces(delegate); | |
208 | + | |
207 | 209 | delegate.registerInterface(Tickable.class); |
208 | 210 | delegate.registerInterface(GameLoopListener.class); |
209 | 211 | delegate.registerInterface(InitCompleteListener.class); | ... | ... |