From 81a04c987b65ae99d88c07517c132e454f2a1499 Mon Sep 17 00:00:00 2001 From: hba56 Date: Wed, 13 Sep 2017 23:50:55 +1200 Subject: [PATCH] Changed the ip of the matchbrowser to that of the CI. --- .../main/java/visualiser/network/MatchBrowserInterface.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/racevisionGame/src/main/java/visualiser/network/MatchBrowserInterface.java b/racevisionGame/src/main/java/visualiser/network/MatchBrowserInterface.java index 97df2ec8..6586042b 100644 --- a/racevisionGame/src/main/java/visualiser/network/MatchBrowserInterface.java +++ b/racevisionGame/src/main/java/visualiser/network/MatchBrowserInterface.java @@ -25,9 +25,8 @@ public class MatchBrowserInterface { private int port; public MatchBrowserInterface() { - //TODO change to ip of cloud server hosting this - try { - this.IPAddress = InetAddress.getLocalHost();//InetAddress.getByName("132.181.13.223"); + try {//132.181.16.13 is the ip of the CI as of 13/9/17 + this.IPAddress = InetAddress.getByName("132.181.16.13"); //InetAddress.getLocalHost(); } catch (UnknownHostException e) { e.printStackTrace(); }