Default to 'packet' blockconnection method

This commit is contained in:
Myles 2019-04-22 18:56:05 +01:00
parent 5f670a88a4
commit d699000dc3
3 changed files with 4 additions and 4 deletions

View File

@ -227,7 +227,7 @@ public class BukkitViaConfig extends Config implements ViaVersionConfig {
@Override
public String getBlockConnectionMethod() {
return getString("blockconnection-method", "world");
return getString("blockconnection-method", "packet");
}
@Override

View File

@ -121,8 +121,8 @@ fix-low-snow-collision: false
#
# Enable serverside block-connections for 1.13+ clients
serverside-blockconnections: false
# Sets the method for the block connections (world for world-level or packet for packet-level)
blockconnection-method: world
# 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
# When activated, only the most important blocks are stored in the blockstorage. (fences, glass panes etc. won't connect to solid blocks)
reduce-blockstorage-memory: false
# When activated with serverside-blockconnections, flower parts with blocks above will be sent as stems

View File

@ -233,7 +233,7 @@ public class SpongeViaConfig extends Config implements ViaVersionConfig {
@Override
public String getBlockConnectionMethod() {
return getString("blockconnection-method", "world");
return getString("blockconnection-method", "packet");
}
@Override