From 9a08e8897b032ec368b5ba628e08ca2973f36d2b Mon Sep 17 00:00:00 2001 From: Phoenix616 Date: Sat, 31 Oct 2020 20:58:22 +0100 Subject: [PATCH] Don't allow opening of shops via sign by default This has caused lots of confusion in the past regarding the first time setup and might be a feature that people don't even want to have. (e.g. to allow coloring of the signs with dyes) --- .../java/com/Acrobot/ChestShop/Configuration/Properties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java index 7066793..61e7210 100644 --- a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java +++ b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java @@ -150,7 +150,7 @@ public class Properties { public static String SHIFT_ALLOWS = "ALL"; @ConfigurationComment("Can shop's chest be opened by owner with right-clicking a shop's sign?") - public static boolean ALLOW_SIGN_CHEST_OPEN = true; + public static boolean ALLOW_SIGN_CHEST_OPEN = false; @ConfigurationComment("If true, when you left-click your own shop sign you won't open chest's inventory, but instead you will start destroying the sign.") public static boolean ALLOW_LEFT_CLICK_DESTROYING = true;