3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-03 08:41:05 +02:00

Default to 'packet' blockconnection method

Dieser Commit ist enthalten in:
Myles 2019-04-22 18:56:05 +01:00
Ursprung 5f670a88a4
Commit d699000dc3
3 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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

Datei anzeigen

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