From 701667ab296c9bc85d8bfb0a48710d6b52ecbf12 Mon Sep 17 00:00:00 2001 From: zOnlyKroks Date: Sat, 7 Oct 2023 15:59:41 +0200 Subject: [PATCH] Fix typo --- .../steamwar/bausystem/features/autodust/AutoDustCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/autodust/AutoDustCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/autodust/AutoDustCommand.java index 0c74cab6..908cd4f6 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/autodust/AutoDustCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/autodust/AutoDustCommand.java @@ -48,7 +48,7 @@ public class AutoDustCommand extends SWCommand implements Listener { @Register(description = "autodust_help") public void genericCommand(@Validator Player p) { boolean autoDust = Config.getInstance().get(p).getPlainValueOrDefault("autodust", false); - Config.getInstance().get(p).put("smartPlace", !autoDust); + Config.getInstance().get(p).put("autodust", !autoDust); } @EventHandler