Advertisement
LatvianModder

How To Fix FTBU Chunkloader crash

Jan 28th, 2016
2,234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. If you place another chunkloader inside chunkloaded FTBU area, it Will crash.
  2.  
  3. Until I figure out how to fix this bug, here is what you do if you get this bug:
  4. (For this fix, let's assume that crashing chunk is x54, z111, dimension 0)
  5.  
  6. java.lang.IllegalArgumentException: Multiple entries with same key: [54, 111]=[net.minecraftforge.common.ForgeChunkManager$Ticket@56212faf] and [0,54,111]=[net.minecraftforge.common.ForgeChunkManager$Ticket@2628cdcc]
  7.  
  8. Go to your
  9. server/world/LatMod/ClaimedChunks.json
  10. And search for a key that looks something like this
  11.  
  12. [
  13. 54,
  14. 111,
  15. 1
  16. ]
  17.  
  18. Now, go ahed and remove the 1, so it looks like this:
  19.  
  20. [
  21. 54,
  22. 111
  23. ]
  24.  
  25. (If its all compressed, look for [54,111,1] and set it to [54,111])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement