aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity
diff options
context:
space:
mode:
authorGlease <4586901+Glease@users.noreply.github.com>2021-10-22 01:37:29 +0800
committerGlease <4586901+Glease@users.noreply.github.com>2021-10-22 01:37:29 +0800
commit7e421ba5da769ac6b1b06215538004979070900c (patch)
tree89b92ba6ea01dcefd20bff5ac475e4f0ddb7175d /src/main/java/gregtech/api/interfaces/tileentity
parent2b53efea1dff931ebecf7af976cfad76597b1bc6 (diff)
downloadGT5-Unofficial-7e421ba5da769ac6b1b06215538004979070900c.tar.gz
GT5-Unofficial-7e421ba5da769ac6b1b06215538004979070900c.tar.bz2
GT5-Unofficial-7e421ba5da769ac6b1b06215538004979070900c.zip
Try start processing immediately upon manual fluid manipulation
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity')
-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
*/