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

This commit is contained in:
KennyTV 2020-02-03 11:16:08 +01:00
parent 3144c6fb19
commit d9e5f650f1
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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