3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00

Disable latest feature due to it breaking signs (no more sync chunks for now)

Dieser Commit ist enthalten in:
Myles 2016-03-06 15:10:54 +00:00
Ursprung 736a853a85
Commit 2d2018b8d0
3 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -67,11 +67,11 @@ public class ViaEncodeHandler extends MessageToByteEncoder {
}
};
// Synced allows timings to work properly.
if (ViaVersion.getInstance().isSyncedChunks()) {
((ViaVersionPlugin) ViaVersion.getInstance()).run(chunks, false);
} else {
// if (ViaVersion.getInstance().isSyncedChunks()) {
// ((ViaVersionPlugin) ViaVersion.getInstance()).run(chunks, false);
// } else {
chunks.run();
}
// }
bytebuf.readBytes(bytebuf.readableBytes());
throw new CancelException();
}

Datei anzeigen

@ -727,9 +727,8 @@ public class OutgoingTransformer {
} else {
if ((!line.startsWith("\"") || !line.endsWith("\"")) && (!line.startsWith("{")|| !line.endsWith("}"))) {
JSONObject obj = new JSONObject();
obj.put("text", line);
line = obj.toJSONString();
return obj.toJSONString();
}
if (line.startsWith("\"") && line.endsWith("\"")) {
line = "{\"text\":" + line + "}";

Datei anzeigen

@ -1,4 +1,5 @@
# Should ViaVersion check for updates?
checkforupdates: true
# Should we send any bulk chunks, in sync (may be slower but fixes timings)
# Currently broken due to sign updates, possibly will return
sync-chunks: true