Removed unused network hooks
This commit is contained in:
parent
e06543dac6
commit
49e833e147
1 changed files with 2 additions and 2 deletions
|
@ -108,12 +108,12 @@ abstract public class DataExchange {
|
||||||
protected void initClientside(){
|
protected void initClientside(){
|
||||||
if (client!=null) return;
|
if (client!=null) return;
|
||||||
client = clientSupplier(this);
|
client = clientSupplier(this);
|
||||||
ClientLoginConnectionEvents.INIT.register((a, b) ->{
|
/*ClientLoginConnectionEvents.INIT.register((a, b) ->{
|
||||||
System.out.println("INIT");
|
System.out.println("INIT");
|
||||||
});
|
});
|
||||||
ClientLoginConnectionEvents.QUERY_START.register((a, b) ->{
|
ClientLoginConnectionEvents.QUERY_START.register((a, b) ->{
|
||||||
System.out.println("INIT");
|
System.out.println("INIT");
|
||||||
});
|
});*/
|
||||||
ClientPlayConnectionEvents.INIT.register(client::onPlayInit);
|
ClientPlayConnectionEvents.INIT.register(client::onPlayInit);
|
||||||
ClientPlayConnectionEvents.JOIN.register(client::onPlayReady);
|
ClientPlayConnectionEvents.JOIN.register(client::onPlayReady);
|
||||||
ClientPlayConnectionEvents.DISCONNECT.register(client::onPlayDisconnect);
|
ClientPlayConnectionEvents.DISCONNECT.register(client::onPlayDisconnect);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue