Abnormal Mod conflict with Loading Timer
Blobanium opened this issue ยท 5 comments
Extended from Loading Timer #10
All the details should be in that issue i mentioned above.
if theres anything else make sure you tell me, thanks.
Please produce a log with a custom log4j config file to display the class name of the stdout.
ok will do, just need to know how to do that as im very new into java and making mods for fabric. Suspect its something to do with apache log4j, right?
I'm sorry but I do want to point out that your mod is fundamentally flawed (well after a quick glance, correct me if I am wrong), you seems to be checking TitleScreen#init to determine when the game starts to load and finished loading, init is called constantly throughout the game, during window resize and more, consider starting the timer when Fabric Loader starts, and ending the timer on the first TitleScreen#init.
ok i will, was thinking about changing that with something else, because i knew using that method is a bad idea, but the only problem trying to correct that was that i didn't really know what to replace it with. I'll probably try your suggestion if i probably can.