
Buckets from the mod Wooden Buckets get turned into iron when pouring liquid into worktables.
UnicornSnuggler opened this issue ยท 4 comments
It looks like the worktables are scripted in a way such that any bucket-like items are converted into iron buckets when liquid is poured from them into a table. Specifically, the mod in question is Wooden Buckets. A wooden bucket with water is converted into an iron bucket when right-clicking on the worktable.
Figure A: 1000 mB in the carpenter's worktable with a wooden water bucket in the inventory.
Figure B: 2000 mB of water in the carpenter's worktable with an empty iron bucket in the inventory.
I'm opting not to close this ticket just yet in case the fix is specific to this mod rather than Wooden Buckets [...]
The Wooden Buckets mod is responsible for the bug and I am going to close this issue now.
any bucket-like items are converted into iron buckets
Can you confirm that this affects more than just the bucket from the Wooden Buckets mod?
I installed and tested this bug with Ceramic Bucket and it looks like maybe it's not a universal issue considering the expected behavior. I'm opting not to close this ticket just yet in case the fix is specific to this mod rather than Wooden Buckets, but I will cross-post the issue just to be certain that the correct level of oversight exists.
Figure C: 1000 mB in the carpenter's worktable with a ceramic water bucket in the inventory.
Figure D: 2000 mB of water in the carpenter's worktable with an empty ceramic bucket in the inventory.
The AW block simply defers to Forge's FluidUtil
which is:
* Used to handle the common case of a player holding a fluid item and right-clicking on a fluid handler.
* First it tries to fill the item from the handler,
* if that action fails then it tries to drain the item into the handler.
* Automatically updates the item in the player's hand and stashes any extra items created.
The onus is on the item stack's fluid handler to provide the correct return item.