Compare commits

...

3 Commits

Author SHA1 Message Date
Nick Hulston e64b5fd7bc
Merge df3dcbe98b into d68617b362 2023-12-11 19:56:54 +10:30
mfnalex d68617b362
13.6.5 fixes #179 2023-11-21 14:14:42 +01:00
Nick Hulston df3dcbe98b
Update Hotkey.java
Auto Sort was using chestsort.use. As a result, if any player had permission 'chestsort.automatic' set to false, they would still see the automatic sort in the GUI, instead of the nopermission barrier.
2023-03-07 15:44:55 -05:00
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
<name>ChestSort</name>
<url>https://www.chestsort.de</url>
<description>Allows automatic chest sorting!</description>
<version>13.6.4</version>
<version>13.6.5</version>
<packaging>jar</packaging>
<properties>
@ -224,9 +224,9 @@
</dependency>
<dependency>
<groupId>com.jeff_media</groupId>
<artifactId>JeffLib</artifactId>
<version>12.4.2</version>
<groupId>com.jeff-media.jefflib</groupId>
<artifactId>jefflib</artifactId>
<version>13.0.2</version>
<scope>compile</scope>
</dependency>

View File

@ -40,7 +40,7 @@ public enum Hotkey {
public static String getPermission(Hotkey hotkey) {
if(hotkey == AUTO_SORT) {
return "chestsort.use";
return "chestsort.automatic";
}
if(hotkey == AUTO_INV_SORT) {