From f69490179b2a02599d440168b403a50e3b8f8875 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Sun, 23 Sep 2018 15:22:58 -0300 Subject: [PATCH] Implement new config methods --- .../creeper123123321/viarift/platform/VRViaConfig.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/com/github/creeper123123321/viarift/platform/VRViaConfig.java b/src/main/java/com/github/creeper123123321/viarift/platform/VRViaConfig.java index a026637..49ae71a 100644 --- a/src/main/java/com/github/creeper123123321/viarift/platform/VRViaConfig.java +++ b/src/main/java/com/github/creeper123123321/viarift/platform/VRViaConfig.java @@ -233,4 +233,13 @@ public class VRViaConfig extends Config implements ViaVersionConfig { public boolean isSuppress1_13ConversionErrors() { return getBoolean("suppress-1_13-conversion-errors", false); } + + @Override + public boolean isMinimizeCooldown() { + return this.getBoolean("minimize-cooldown", true); + } + + public boolean isDisable1_13AutoComplete() { + return this.getBoolean("disable-1_13-auto-complete", false); + } } \ No newline at end of file