Posted March 15, 201510 yr There is an annoying bug in RFTools that I cannot reproduce in my dev env so it is somewhat hard to debug. But basically if people shift-click a stack of items into some of my containers (for which the slots only accept one item) then one item of the stack is inserted and the rest is lost. If I do it in my dev env then the items of the stack are nicely distributed to all available slots of the machine and the remainder goes somewhere in the player inventory. Nothing is lost. I'm at a loss as what I could be doing wrong. My transferStackInSlot implementation can be found here: https://github.com/McJty/RFTools/blob/master/src/main/java/com/mcjty/container/GenericContainer.java Anyone who has any insight into what might be wrong? Thanks!
March 15, 201510 yr To solve this issue, It is necessary to know what the container with the bug is and some screenshots for that. I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP) II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.
March 15, 201510 yr Author Ok, here two screenshots. Before shift-click and after shift-click. Notice how it works fine for me. It doesn't for many people and I don't know why: And here is the code for this particular container: https://github.com/McJty/RFTools/blob/master/src/main/java/com/mcjty/rftools/blocks/screens/ScreenContainer.java
March 15, 201510 yr Author Nobody has any idea on this? This bug is hitting several of my containers (every container for which the slot in the container only allows one item but the stack itself can contain multiple items).
March 15, 201510 yr You need to figure out exactly how to reproduce this bug, this would make it much, much easier to find the issue. Don't make mods if you don't know Java. Check out my website: http://shadowfacts.net Developer of many mods
March 15, 201510 yr Author Well reproducing it is easy enough. Exactly like I did in the screenshot. Shift-click on a stack. In my dev environment the stack gets evenly distributed on the slots (like the second screenshot shows). In many modpacks however (like FTB Infinity) the first slot of the container gets one item and the rest of the stack is discared (lost).
March 16, 201510 yr You should try to find what mod is making the issue. I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP) II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.
March 16, 201510 yr Author Actually I found the problem. It is not a mod that is causing the issue. It is a mod that is 'FIXING' the issue. Apparently in my local dev env I have a CoFHlib that patches a bug in Minecraft's mergeItemStack() which apparently doesn't respect the maximum number of items in inventory slots. So in my dev env it was fixed because CoFHlib was fixing it. But apparently in some modpacks there is no CoFHlib or perhaps another version of CoFHlib which does not fix this. So I solved the issue by implementing the fix locally in my mod. Thanks for helping though.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.