Added InventoryTweaks inventory sort ability in Refined Storage GUIs

This commit is contained in:
raoulvdberge
2017-08-09 20:41:37 +02:00
parent 3ac2afcb02
commit 0b9937c2d8
2 changed files with 3 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
### 1.5.15 ### 1.5.15
- Updated Forge to 2444 (MC 1.12.1) (raoulvdberge) - Updated Forge to 2444 (MC 1.12.1) (raoulvdberge)
- Added InventoryTweaks Grid sorting (cooliojazz) - Added InventoryTweaks Grid sorting (cooliojazz)
- Added InventoryTweaks inventory sort ability in Refined Storage GUIs (raoulvdberge)
- Added CTM integration for Disk Manipulator (raoulvdberge) - Added CTM integration for Disk Manipulator (raoulvdberge)
- Fixed possible rare dupe bug with Importer (raoulvdberge) - Fixed possible rare dupe bug with Importer (raoulvdberge)
- Fixed Shulker Box dupe bug with Destructor (raoulvdberge) - Fixed Shulker Box dupe bug with Destructor (raoulvdberge)

View File

@@ -4,6 +4,7 @@ import com.raoulvdberge.refinedstorage.RSItems;
import com.raoulvdberge.refinedstorage.apiimpl.API; import com.raoulvdberge.refinedstorage.apiimpl.API;
import com.raoulvdberge.refinedstorage.container.slot.*; import com.raoulvdberge.refinedstorage.container.slot.*;
import com.raoulvdberge.refinedstorage.tile.TileBase; import com.raoulvdberge.refinedstorage.tile.TileBase;
import invtweaks.api.container.InventoryContainer;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.ClickType; import net.minecraft.inventory.ClickType;
import net.minecraft.inventory.Container; import net.minecraft.inventory.Container;
@@ -13,6 +14,7 @@ import net.minecraftforge.items.ItemHandlerHelper;
import javax.annotation.Nonnull; import javax.annotation.Nonnull;
@InventoryContainer(showOptions = false)
public abstract class ContainerBase extends Container { public abstract class ContainerBase extends Container {
private TileBase tile; private TileBase tile;
private EntityPlayer player; private EntityPlayer player;