Fix localhost/live serv parabot jars

This commit is contained in:
dginovker
2019-11-14 13:39:08 -05:00
parent 982ae74d37
commit 7366de67e1
6 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -22,8 +22,7 @@ public class ClientSettings {
* on localhost * on localhost
* *
*/ */
//public static String SERVER_IP = "35.226.247.68"; //NOW SET IN Main,java public static String SERVER_IP = "35.226.247.68";
public static String SERVER_IP = "127.0.0.1";
/** /**
* The Npc Bits for the Server * The Npc Bits for the Server
*/ */
+1 -1
View File
@@ -23,6 +23,6 @@ import java.util.Date;
public class LocalGame extends Game { public class LocalGame extends Game {
public LocalGame() { public LocalGame() {
super(); super();
server = ClientSettings.SERVER_IP; server = "127.0.0.1";
} }
} }