aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-10-22 11:53:19 +0200
committerGitHub <noreply@github.com>2021-10-22 11:53:19 +0200
commit943c37a40d0810017966603b69f6a0f4f80a2b16 (patch)
tree79d1fd3e18127a6b88a76c69634925127071b7e8 /src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java
parentc5378f1c3f73a2dd5c373e97ad4ebcb74ae2efc9 (diff)
parent7e421ba5da769ac6b1b06215538004979070900c (diff)
downloadGT5-Unofficial-943c37a40d0810017966603b69f6a0f4f80a2b16.tar.gz
GT5-Unofficial-943c37a40d0810017966603b69f6a0f4f80a2b16.tar.bz2
GT5-Unofficial-943c37a40d0810017966603b69f6a0f4f80a2b16.zip
Merge pull request #702 from GTNewHorizons/start-upon-fluid-manipulation
Try start processing immediately upon manual fluid manipulation
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java b/src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java
index 437d896800..74ad58c407 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IHasInventory.java
@@ -5,6 +5,8 @@ import net.minecraft.item.ItemStack;
public interface IHasInventory extends ISidedInventory, IHasWorldObjectAndCoords {
+ default void markInventoryBeenModified() {}
+
/**
* if the Inventory of this TileEntity got modified this tick
*/