3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-09-07 13:22:54 +02:00

Disable face player fix by default (unlikely to be used too often)

Dieser Commit ist enthalten in:
KennyTV 2020-02-03 11:16:08 +01:00
Ursprung 3144c6fb19
Commit d9e5f650f1
2 geänderte Dateien mit 3 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -27,7 +27,7 @@ public class ViaBackwardsConfig extends Config implements nl.matsv.viabackwards.
private void loadFields() {
addCustomEnchantsToLore = getBoolean("add-custom-enchants-into-lore", true);
addTeamColorToPrefix = getBoolean("add-teamcolor-to-prefix", true);
fix1_13FacePlayer = getBoolean("fix-1_13-face-player", true);
fix1_13FacePlayer = getBoolean("fix-1_13-face-player", false);
}
@Override

Datei anzeigen

@ -7,6 +7,5 @@ add-custom-enchants-into-lore: true
# Adds the color of a scoreboard team after its prefix for 1.12 clients on 1.13+ servers.
add-teamcolor-to-prefix: true
#
# Converts the 1.13 face look-at packet for 1.12- players.
# Might produce a bit of overhead and caching, so you may turn this off if unused (usually only sent by the vanilla teleport).
fix-1_13-face-player: true
# Converts the 1.13 face look-at packet for 1.12- players. Requires a bit of extra caching.
fix-1_13-face-player: false