You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The spectre anchor from random things is a really overpowered item that adds an nbt tag to nonstackable items that makes them not lost on death. It can be applied to the deep mob learner, but upon opening the deep mob learner the tag it adds will be removed. I expect this is caused by either writing back only relevant parts of the nbt tag causing injected tags to be dropped, or possibly by actively stripping injected tags.
Based on a cursory look at the code, I think this is caused by the end of ItemDeepLearner.setContainedItems where the deep learner's tag is set to the list of items, rather than setting some field in the tag to the list. Unfortunately if that is the problem, a fixed version of the mod would have to either go through all items in the world and update the nbt of any old style deep mob learners, or (probably better) have the deep mob learner check for the old format when it would normally need to and update it if it is found.
The text was updated successfully, but these errors were encountered:
The spectre anchor from random things is a really overpowered item that adds an nbt tag to nonstackable items that makes them not lost on death. It can be applied to the deep mob learner, but upon opening the deep mob learner the tag it adds will be removed. I expect this is caused by either writing back only relevant parts of the nbt tag causing injected tags to be dropped, or possibly by actively stripping injected tags.
Based on a cursory look at the code, I think this is caused by the end of
ItemDeepLearner.setContainedItems
where the deep learner's tag is set to the list of items, rather than setting some field in the tag to the list. Unfortunately if that is the problem, a fixed version of the mod would have to either go through all items in the world and update the nbt of any old style deep mob learners, or (probably better) have the deep mob learner check for the old format when it would normally need to and update it if it is found.The text was updated successfully, but these errors were encountered: