diff --git a/README.md b/README.md index f2dc14c..bf4a501 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ A simple java 8 API to execute commands on minecraft servers remotely via the RCON protocol (see below). +Tested against minecraft spigot 1.7.10 server - SUCCESS + ## Usage 1. Instantiate RConClient using one of the four constructors 2. If you used one of the non-password constructors, call authenticate(password) to login. diff --git a/src/test/java/org/fnet/mcrconapi/TempTestForRealServer.java b/src/test/java/org/fnet/mcrconapi/TempTestForRealServer.java deleted file mode 100644 index 5b74afa..0000000 --- a/src/test/java/org/fnet/mcrconapi/TempTestForRealServer.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.fnet.mcrconapi; - -import java.io.IOException; - -public class TempTestForRealServer { - - public static void main(String[] args) throws IOException, AuthenticationException { - try (RConClient client = new RConClient("127.0.0.1", "testPassword")) { - client.sendCommand("say hello world"); - } - } - -}