Overwriting FoodStats::tick crashes with other mods injecting into the same method
Fuzss opened this issue ยท 1 comments
Please don't use @Overwrite
on FoodStats::tick. My Golden Age Combat mod tries to inject into that method, it being overwritten by Tough As Nails leads to a crash on start-up.
Using @Inject
at HEAD
and then calling CallbackInfo::cancel
leads to exactly the same result without having any compatibility issues.