implement new configs

This commit is contained in:
creeper123123321 2019-01-15 11:14:19 -02:00
parent fa5dbe6f08
commit e819374d3c
No known key found for this signature in database
GPG Key ID: 0AC57D54786721D1

View File

@ -258,4 +258,14 @@ public class VRViaConfig extends Config implements ViaVersionConfig {
public boolean isReduceBlockStorageMemory() {
return this.getBoolean("reduce-blockstorage-memory", false);
}
@Override
public boolean isStemWhenBlockAbove() {
return this.getBoolean("flowerstem-when-block-above", false);
}
@Override
public boolean isSnowCollisionFix() {
return this.getBoolean("fix-low-snow-collision", false);
}
}