Future MC crash with Minor Integrations and Additions (MIA)
23KiaraMinecraft opened this issue ยท 9 comments
I have the latest version of Forge and both of these mods. I checked the GitHub for Minor Integrations and Additions (MIA) and there was an issue exactly like the one I'm having. I'm only posting this here to make sure that this bug is known.
Here is the crash report: (https://pastebin.com/Q4uCGV3i)
Here is the latest log: (https://pastebin.com/AmLERhNQ)
I did and this is what I got. It still crashed.
Crash Report: (https://pastebin.com/3hYW1zWq)
Latest Log: (https://paste.ee/p/qMuBG)
I brought back the old fireproof armor class because I changed other things besides renaming the class (knockback resistance)
If you need anything else to make the armor class easier to use, let me know
Hey, MIA dev here. I haven't noticed an issue on my mod's Github page due to misconfigured notification settings, so I only realized yesterday that there's some issues.
From what I saw, the issue is that I reference Netherite armor in a few places (for example, when Thermal Expansion is present I add recipes to recycle it in similar ways it's done with other armor by that mod), and the FireproofArmorItem
class was renamed to NetheriteArmorItem
. The simple fix would have been to recompile my mod with the most recent FutureMC version present. I suppose this is a downside of how I handle my mod, by directly referencing other stuff in other mods (and considering the amount of mods I work with, it's more convenient for me).
I've noticed you attempted to fix it on your side (I assume that this attempt was the @JvmField
annotations for a couple of fields). Feel free to revert it, as it won't really have any effect on my mod. The only thing it changes is that to reference specific blocks, I need to call FBlocks.LILY_OF_THE_VALLEY
as opposed of FBlocks.INSTANCE.getLILY_OF_THE_VALLEY()
, as it is right now. This is not a big deal on my end.
Anyway, I should update my mod (hopefully) tomorrow with a fix for this.
Oh, thanks for helping out, but you didn't have to. As I said in my previous message, I just needed to compile my project again to fix the issues. You don't really have to worry about me that much, as it's at most a couple smaller changes on my part.