fixed default config version

This commit is contained in:
mfnalex 2018-08-19 18:30:39 +02:00
parent 157d37f6e0
commit 3d5d29241c
4 changed files with 14 additions and 13 deletions

View File

@ -6,6 +6,6 @@
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="J:/BuildTools/Spigot/Spigot-API/target/spigot-api-1.13-R0.1-SNAPSHOT-shaded.jar"/>
<classpathentry kind="lib" path="/Users/alex/BuildTools/Spigot/Spigot-API/target/spigot-api-1.13-R0.1-SNAPSHOT-shaded.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -1,6 +1,6 @@
main: de.jeffclan.JeffChestSort.JeffChestSortPlugin
name: ChestSort
version: 1.7.2
version: 1.7.3
api-version: 1.13
description: Allows automatic chest sorting
author: mfnalex

View File

@ -48,6 +48,7 @@ public class JeffChestSortOrganizer {
if(typeName.contains("pickaxe") || typeName.contains("shovel") ) {
return "";
}
return "";
}
String getSortableString(ItemStack item) {

View File

@ -16,7 +16,7 @@ public class JeffChestSortPlugin extends JavaPlugin {
JeffChestSortMessages messages;
JeffChestSortOrganizer organizer;
String sortingMethod;
int currentConfigVersion = 3;
int currentConfigVersion = 4;
boolean debug = false;
@Override