From 7bf263fdfadb64dc2ce348a345108070770b00ce Mon Sep 17 00:00:00 2001 From: fuzzbuck <54221024+fuzzbuck@users.noreply.github.com> Date: Thu, 24 Dec 2020 22:16:19 +0100 Subject: [PATCH 1/2] add new io server (#4109) soon to be up gamemode --- servers_v6.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers_v6.json b/servers_v6.json index 72b647f258..b715c4dfa9 100644 --- a/servers_v6.json +++ b/servers_v6.json @@ -17,7 +17,7 @@ }, { "name": "io", - "address": ["mindustry.io", "mindustry.io:1000", "mindustry.io:2000", "mindustry.io:3000"] + "address": ["mindustry.io", "mindustry.io:1000", "mindustry.io:2000", "mindustry.io:3000", "mindustry.io:4000"] }, { "name": "ECAN", From 7cc3e23e9ad0f67c546207ed66b99795ba0d2859 Mon Sep 17 00:00:00 2001 From: fuzzbuck <54221024+fuzzbuck@users.noreply.github.com> Date: Fri, 25 Dec 2020 00:28:08 +0100 Subject: [PATCH 2/2] typo (#4110) --- .../java/mindustry/annotations/remote/RemoteReadGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotations/src/main/java/mindustry/annotations/remote/RemoteReadGenerator.java b/annotations/src/main/java/mindustry/annotations/remote/RemoteReadGenerator.java index a8493d5643..3442843669 100644 --- a/annotations/src/main/java/mindustry/annotations/remote/RemoteReadGenerator.java +++ b/annotations/src/main/java/mindustry/annotations/remote/RemoteReadGenerator.java @@ -107,7 +107,7 @@ public class RemoteReadGenerator{ } readBlock.nextControlFlow("catch (java.lang.Exception e)"); - readBlock.addStatement("throw new java.lang.RuntimeException(\"Failed to to read remote method '" + entry.element.getSimpleName() + "'!\", e)"); + readBlock.addStatement("throw new java.lang.RuntimeException(\"Failed to read remote method '" + entry.element.getSimpleName() + "'!\", e)"); readBlock.endControlFlow(); }