mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-10-31 23:59:33 +01:00
Default to 'packet' blockconnection method
This commit is contained in:
parent
5f670a88a4
commit
d699000dc3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user