Make compatible with ServerListPlus custom outdated message. Fix #227

This commit is contained in:
Mats 2016-03-15 14:14:10 +01:00
parent 7cfba0b602
commit daed15d61f
1 changed files with 2 additions and 1 deletions

View File

@ -299,7 +299,8 @@ public class OutgoingTransformer {
try {
JSONObject json = (JSONObject) new JSONParser().parse(originalStatus);
JSONObject version = (JSONObject) json.get("version");
version.put("protocol", info.getProtocol());
if ((long) version.get("protocol") != 9999) //Fix ServerListPlus custom outdated message
version.put("protocol", info.getProtocol());
PacketUtil.writeString(json.toJSONString(), output);
} catch (ParseException e) {
e.printStackTrace();