mirror of
https://github.com/JEFF-Media-GbR/ChestSort.git
synced 2024-12-03 08:03:26 +01:00
8.15.1
This commit is contained in:
parent
7cb026e156
commit
d461084d5f
@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## 8.15.1
|
||||
- Fixed dirt in containers being affected by the right-click hotkey even though the player had no dirt in his inventory
|
||||
|
||||
## 8.15.0
|
||||
- Enabled left-click and right-click hotkey for 3rd party plugins implementing the ISortable interface from ChestSort's API (You only need this update if you use plugins depending on the ChestSortAPI)
|
||||
|
||||
|
2
pom.xml
2
pom.xml
@ -9,7 +9,7 @@
|
||||
<name>ChestSort</name>
|
||||
<url>https://www.chestsort.de</url>
|
||||
<description>Automatically sorts your chests!</description>
|
||||
<version>8.15.0</version>
|
||||
<version>8.15.1</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
|
@ -554,7 +554,6 @@ public class ChestSortOrganizer {
|
||||
|
||||
public void stuffInventoryIntoAnother(Inventory source, Inventory destination, Inventory origSource, boolean onlyMatchingStuff) {
|
||||
|
||||
Material placeholderMaterial = Material.DIRT;
|
||||
ItemStack[] hotbarStuff = new ItemStack[9];
|
||||
boolean destinationIsPlayerInventory = true;
|
||||
if (destination.getHolder() == null || !(destination.getHolder() instanceof Player) || destination.getType() != InventoryType.PLAYER) {
|
||||
@ -565,7 +564,7 @@ public class ChestSortOrganizer {
|
||||
if (destinationIsPlayerInventory) {
|
||||
for (int i = 0; i < 9; i++) {
|
||||
hotbarStuff[i] = destination.getItem(i);
|
||||
destination.setItem(i, new ItemStack(placeholderMaterial, 64));
|
||||
destination.setItem(i, getPlaceholderBlock());
|
||||
}
|
||||
}
|
||||
|
||||
@ -600,6 +599,11 @@ public class ChestSortOrganizer {
|
||||
|
||||
}
|
||||
|
||||
// Used to temporarily fill the hotbar
|
||||
private ItemStack getPlaceholderBlock() {
|
||||
return new ItemStack(Material.BARRIER, 64);
|
||||
}
|
||||
|
||||
public void stuffPlayerInventoryIntoAnother(PlayerInventory source,
|
||||
Inventory destination, boolean onlyMatchingStuff) {
|
||||
boolean destinationIsShulkerBox = destination.getType().name().equalsIgnoreCase("SHULKER_BOX");
|
||||
|
@ -1,6 +1,6 @@
|
||||
main: de.jeff_media.ChestSort.ChestSortPlugin
|
||||
name: ChestSort
|
||||
version: 8.15.0
|
||||
version: 8.15.1
|
||||
api-version: "1.13"
|
||||
description: Allows automatic chest sorting
|
||||
author: mfnalex
|
||||
|
Loading…
Reference in New Issue
Block a user