Skip to content

Commit

Permalink
Don't allow opening of shops via sign by default
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Phoenix616 committed Oct 31, 2020
1 parent f0bf9a0 commit 9a08e88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public <T> Object parseToJava(Class<T> type, Object object) {
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;
Expand Down

0 comments on commit 9a08e88

Please sign in to comment.