mirror of
https://github.com/JEFF-Media-GbR/ChestSort.git
synced 2024-11-30 06:33:27 +01:00
8.10.2
This commit is contained in:
parent
21595857e5
commit
699b50410d
@ -1,4 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
## 8.10.2
|
||||||
|
- Fixed exception on versions prior to 1.11
|
||||||
|
|
||||||
|
## 8.10.1
|
||||||
|
- Minor bugfixes
|
||||||
|
|
||||||
## 8.10
|
## 8.10
|
||||||
- Made llama, donkey and mule chests sortable via hotkeys and automatic chest sorting
|
- Made llama, donkey and mule chests sortable via hotkeys and automatic chest sorting
|
||||||
- Left-Click/Right-Click-Hotkey only works with empty hand now
|
- Left-Click/Right-Click-Hotkey only works with empty hand now
|
||||||
|
2
pom.xml
2
pom.xml
@ -9,7 +9,7 @@
|
|||||||
<name>JeffChestSort</name>
|
<name>JeffChestSort</name>
|
||||||
<url>https://www.chestsort.de</url>
|
<url>https://www.chestsort.de</url>
|
||||||
<description>Automatically sorts your chests!</description>
|
<description>Automatically sorts your chests!</description>
|
||||||
<version>8.10.1</version>
|
<version>8.10.2</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
@ -21,7 +21,7 @@ public class LlamaUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean belongsToLlama(Inventory inv) {
|
public static boolean belongsToLlama(Inventory inv) {
|
||||||
if(inv.getHolder() instanceof ChestedHorse) {
|
if(inv.getHolder() != null && inv.getHolder().getClass().getName().endsWith("CraftLlama")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
main: de.jeff_media.ChestSort.ChestSortPlugin
|
main: de.jeff_media.ChestSort.ChestSortPlugin
|
||||||
name: ChestSort
|
name: ChestSort
|
||||||
version: 8.10.1
|
version: 8.10.2
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
description: Allows automatic chest sorting
|
description: Allows automatic chest sorting
|
||||||
author: mfnalex
|
author: mfnalex
|
||||||
|
Loading…
Reference in New Issue
Block a user