This commit is contained in:
Anuken
2020-10-14 08:49:05 -04:00
parent bea9deb386
commit 6b4a7d025b
3 changed files with 6 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ public class Pathfinder implements Runnable{
} }
//special preset which may help speed things up; this is optional //special preset which may help speed things up; this is optional
preloadPath(getField(state.rules.waveTeam, costGround, fieldCore)); //preloadPath(getField(state.rules.waveTeam, costGround, fieldCore));
start(); start();
}); });

View File

@@ -227,7 +227,9 @@ public class DesktopLauncher extends ClientLauncher{
@Override @Override
public void updateLobby(){ public void updateLobby(){
SVars.net.updateLobby(); if(SVars.net != null){
SVars.net.updateLobby();
}
} }
@Override @Override

2
jitpack.yml Normal file
View File

@@ -0,0 +1,2 @@
jdk:
- openjdk14