mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-01-23 07:51:27 +01:00
Merge pull request #228 from Matsv/slp
Make compatible with ServerListPlus custom outdated message. Fix #227
This commit is contained in:
commit
722f28f086
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user