3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-05 09:40:06 +02:00

Block connections true by default

While we didn't have this enabled when it launched, most of the bugs are gone and the number of people using this option is pretty high.
Dieser Commit ist enthalten in:
Myles 2020-04-19 18:59:38 +01:00
Ursprung c7bc9aa43c
Commit 2734b18d07
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -99,7 +99,7 @@ public abstract class AbstractViaConfig extends Config implements ViaVersionConf
teamColourFix = getBoolean("team-colour-fix", true); teamColourFix = getBoolean("team-colour-fix", true);
suppressConversionWarnings = getBoolean("suppress-conversion-warnings", false); suppressConversionWarnings = getBoolean("suppress-conversion-warnings", false);
disable1_13TabComplete = getBoolean("disable-1_13-auto-complete", false); disable1_13TabComplete = getBoolean("disable-1_13-auto-complete", false);
serversideBlockConnections = getBoolean("serverside-blockconnections", false); serversideBlockConnections = getBoolean("serverside-blockconnections", true);
reduceBlockStorageMemory = getBoolean("reduce-blockstorage-memory", false); reduceBlockStorageMemory = getBoolean("reduce-blockstorage-memory", false);
flowerStemWhenBlockAbove = getBoolean("flowerstem-when-block-above", false); flowerStemWhenBlockAbove = getBoolean("flowerstem-when-block-above", false);
vineClimbFix = getBoolean("vine-climb-fix", false); vineClimbFix = getBoolean("vine-climb-fix", false);

Datei anzeigen

@ -136,7 +136,7 @@ fix-1_14-health-nan: true
use-1_15-instant-respawn: false use-1_15-instant-respawn: false
# #
# Enable serverside block-connections for 1.13+ clients - all of the options in this section are built around this option # Enable serverside block-connections for 1.13+ clients - all of the options in this section are built around this option
serverside-blockconnections: false serverside-blockconnections: true
# Sets the method for the block connections (world for highly experimental (USE AT OWN RISK) world-level or packet for packet-level) # Sets the method for the block connections (world for highly experimental (USE AT OWN RISK) world-level or packet for packet-level)
blockconnection-method: packet blockconnection-method: packet
# When activated, only the most important blocks are stored in the blockstorage. (fences, glass panes etc. won't connect to solid blocks) # When activated, only the most important blocks are stored in the blockstorage. (fences, glass panes etc. won't connect to solid blocks)