diff --git a/src/main/java/us/myles/ViaVersion/api/ViaVersionConfig.java b/src/main/java/us/myles/ViaVersion/api/ViaVersionConfig.java index 46d6271b9..e53c1ea27 100644 --- a/src/main/java/us/myles/ViaVersion/api/ViaVersionConfig.java +++ b/src/main/java/us/myles/ViaVersion/api/ViaVersionConfig.java @@ -24,14 +24,14 @@ public interface ViaVersionConfig { boolean isPreventCollision(); /** - * Get if 1.9 clients are shown the new effect indicator in the top-right corner + * Get if 1.9 & 1.10 clients are shown the new effect indicator in the top-right corner * * @return true if the using of the new effect indicator is enabled */ boolean isNewEffectIndicator(); /** - * Get if 1.9 clients are shown the new death message on the death screen + * Get if 1.9 & 1.10 clients are shown the new death message on the death screen * * @return true if enabled */ @@ -45,28 +45,28 @@ public interface ViaVersionConfig { boolean isSuppressMetadataErrors(); /** - * Get if blocking in 1.9 appears as a player holding a shield + * Get if blocking in 1.9 & 1.10 appears as a player holding a shield * * @return true if shield blocking is enabled */ boolean isShieldBlocking(); /** - * Get if armor stand positions are fixed so holograms show up at the correct height in 1.9 + * Get if armor stand positions are fixed so holograms show up at the correct height in 1.9 & 1.10 * * @return true if hologram patching is enabled */ boolean isHologramPatch(); /** - * Get if boss bars are fixed for 1.9 clients + * Get if boss bars are fixed for 1.9 & 1.10 clients * * @return true if boss bar patching is enabled */ boolean isBossbarPatch(); /** - * Get if the boss bars for 1.9 clients are being stopped from flickering + * Get if the boss bars for 1.9 & 1.10 clients are being stopped from flickering * This will keep all boss bars on 100% (not recommended) * * @return true if boss bar anti flickering is enabled diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 64313c2b4..c29934244 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -38,7 +38,7 @@ tracking-max-warnings: 4 tracking-max-kick-msg: "You are sending too many packets, :(" # #----------------------------------------------------------# -# 1.9 CLIENTS ON 1.8 SERVERS OPTIONS # +# 1.9 & 1.10 CLIENTS ON 1.8 SERVERS OPTIONS # #----------------------------------------------------------# # # No collide options, these allow you to configure how collision works. @@ -48,7 +48,7 @@ prevent-collision: true auto-team: true # When enabled if certain metadata can't be read we won't tell you about it suppress-metadata-errors: false -# When enabled 1.9 will be able to block by using shields +# When enabled 1.9 & 1.10 will be able to block by using shields shield-blocking: true # Should we enable our hologram patch? # If they're in the wrong place enable this @@ -61,13 +61,13 @@ simulate-pt: true nms-player-ticking: true # Should we patch boss bars so they work? (Default: true, disable if you're having issues) bossbar-patch: true -# If your boss bar flickers on 1.9, set this to 'true'. It will keep all boss bars on 100% (not recommended) +# If your boss bar flickers on 1.9 & 1.10, set this to 'true'. It will keep all boss bars on 100% (not recommended) bossbar-anti-flicker: false -# This will show the new effect indicator in the top-right corner for 1.9 players. +# This will show the new effect indicator in the top-right corner for 1.9 & 1.10 players. use-new-effect-indicator: true -# Show the new death messages for 1.9 on the death screen +# Show the new death messages for 1.9 & 1.10 on the death screen use-new-deathmessages: false # Should we cache our items, this will prevent server from being lagged out, however the cost is a constant task caching items item-cache: true -# Patch the Anti xray to work on 1.9 (If your server is 1.8) This can cost more performance, so disable it if you don't use it. +# Patch the Anti xray to work on 1.9 & 1.10 (If your server is 1.8) This can cost more performance, so disable it if you don't use it. anti-xray-patch: true \ No newline at end of file