From 395f0513a64f7f378220c092a6a9bbbbb570228c Mon Sep 17 00:00:00 2001 From: Phoenix616 Date: Fri, 4 Dec 2020 15:01:26 +0100 Subject: [PATCH] Improve ignore config setting comments to make it more clear --- .../java/com/Acrobot/ChestShop/Configuration/Properties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java index 03424ce..bbb135c 100644 --- a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java +++ b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java @@ -131,10 +131,10 @@ public class Properties { @ConfigurationComment("(In 1/1000th of a second) How often can a player use the shop sign?") public static int SHOP_INTERACTION_INTERVAL = 250; - @ConfigurationComment("Do you want to allow using shops to people in creative mode?") + @ConfigurationComment("Do you want to block people in creative mode from using shops?") public static boolean IGNORE_CREATIVE_MODE = true; - @ConfigurationComment("Do you want to allow using shops to people who have access to it due to their permissions? (owners are always ignored)") + @ConfigurationComment("Do you want to block people who have access to a shop due to their permissions from using it? (owners are always ignored)") public static boolean IGNORE_ACCESS_PERMS = true; @ConfigurationComment("If true, people will buy with left-click and sell with right-click.")