Merge remote-tracking branch 'origin/3.0' into 3.0

Conflicts:
	QuickLaunch/settings.properties
This commit is contained in:
2019-04-28 11:31:44 +02:00
30 changed files with 171 additions and 48 deletions
-10
View File
@@ -8,13 +8,3 @@ f
f
g
g
h
h
i
i
j
j
k
k
l
l
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,4 +2,4 @@
Load-File-on-startup=true
key2=44
key1=29
Check-for-updates-on-startup=true
Check-for-updates-on-startup=true
+1 -1
View File
@@ -14,7 +14,7 @@ public class UpdateChecker {
public void requestServerData(){
try {
Socket socket = new Socket();
socket.connect(new InetSocketAddress(InetAddress.getByName("cookiestudios.org"), 9999), 2000);
socket.connect(new InetSocketAddress(InetAddress.getByName(/*"cookiestudios.org"*/"localhost"), 9999), 2000);
DataInputStream in = new DataInputStream(socket.getInputStream());
DataOutputStream out = new DataOutputStream(socket.getOutputStream());