diff options
author | Jason Mitchell <mitchej@gmail.com> | 2023-01-30 10:56:42 -0800 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2023-01-30 10:56:42 -0800 |
commit | 0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a (patch) | |
tree | 1e2c649f3a6ce3f6b2babd0098a5f4819e9cd0b6 /src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java | |
parent | f8cc82edeb9810c45cba762d733a2c909a302faa (diff) | |
download | GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.tar.gz GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.tar.bz2 GT5-Unofficial-0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a.zip |
[ci skip] spotlessApply with the new settings
Diffstat (limited to 'src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java')
-rw-r--r-- | src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java b/src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java index 77def5e8fd..89d281eb27 100644 --- a/src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java +++ b/src/main/java/gregtech/api/multitileentity/interfaces/IItemUpdatable.java @@ -4,12 +4,16 @@ import net.minecraft.item.ItemStack; import net.minecraft.world.World; public interface IItemUpdatable { + /** - * Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens to the Stack. + * Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens + * to the Stack. */ void updateItemStack(ItemStack aStack); + /** - * Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens to the Stack. + * Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens + * to the Stack. */ void updateItemStack(ItemStack aStack, World aWorld, int aX, int aY, int aZ); } |