Basic kill tracking

This commit is contained in:
Anuken
2019-09-27 16:04:34 -04:00
parent 53d4f44178
commit f925ec8cbe
6 changed files with 25 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ import static io.anuke.mindustry.Vars.*;
public class DesktopLauncher extends ClientLauncher{
public final static String discordID = "610508934456934412";
boolean useDiscord = OS.is64Bit, showConsole = true;
boolean useDiscord = OS.is64Bit, showConsole = false;
public static void main(String[] arg){
try{
@@ -217,6 +217,7 @@ public class DesktopLauncher extends ClientLauncher{
@Override
public NetProvider getNet(){
if(steam && SVars.net == null) SVars.net = new SNet(new ArcNetImpl());
return steam ? SVars.net : new ArcNetImpl();
}