Updated server IP and fix workspace.xml (#45)

* Updated server IP and fix workspace.xml

* I'm stupid
This commit is contained in:
Daniel Ginovker 2019-11-09 16:44:09 -05:00 committed by GitHub
parent 5897f92478
commit 11b1521819
3 changed files with 8 additions and 3 deletions

View file

@ -2,6 +2,8 @@ package org.runite;
import org.runite.jagex.GameShell;
import static org.runite.Client.PUBLIC_IP_ADDRESS;
/**
* Handles the launching of our Game Client.
* @author Keldagrim Development Team
@ -17,7 +19,7 @@ public class GameLaunch {
NOTICE: IF YOU'RE A DEVELOPER, THE EASIEST WAY TO CONNECT TO THE LIVESERVER IS WITH CLIENT.JAVA. THIS CLASS IS FOR LOCAL SERVER CONNECTING!
*/
public static GameSetting SETTINGS = new GameSetting("2009Scape", Configurations.LOCAL_SERVER ? "127.0.0.1" : "34.68.75.237"/*"34.68.75.237"*/, 1, "live", false, false);
public static GameSetting SETTINGS = new GameSetting("2009Scape", Configurations.LOCAL_SERVER ? "127.0.0.1" : PUBLIC_IP_ADDRESS/*"34.68.75.237"*/, 1, "live", false, false);
/**
* The main method.