diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-10-22 01:37:29 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-10-22 01:37:29 +0800 |
commit | 7e421ba5da769ac6b1b06215538004979070900c (patch) | |
tree | 89b92ba6ea01dcefd20bff5ac475e4f0ddb7175d /src/main/java/gregtech/api/interfaces/tileentity | |
parent | 2b53efea1dff931ebecf7af976cfad76597b1bc6 (diff) | |
download | GT5-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.java | 2 |
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 */ |