I hate red in my Logs
bookerthegeek opened this issue ยท 5 comments
Heyo
Don't know what to call this, sorry for the shitty title.
[22:54:03] [main/INFO] [practicallogistics2]: IInfoError loaded successfully: sonar.logistics.api.errors.UUIDError
[22:54:03] [main/INFO] [practicallogistics2]: IInfoError loaded successfully: sonar.logistics.api.errors.DestroyedError
[22:54:03] [main/INFO] [practicallogistics2]: IInfoError loaded successfully: sonar.logistics.api.errors.DisconnectedError
[22:54:03] [main/ERROR] [practicallogistics2]: Failed to load method: public int net.minecraftforge.fluids.Fluid.getTemperature(net.minecraftforge.fluids.FluidStack), Valid Parameters: false, Valid Returns true,
[22:54:03] [main/ERROR] [practicallogistics2]: Failed to load method: public int net.minecraftforge.fluids.Fluid.getViscosity(net.minecraftforge.fluids.FluidStack), Valid Parameters: false, Valid Returns true,
Versions
- Minecraft 1.12.2
- Practical Logistics 2 3.0.1
- Full Mod List
This particular issue is nothing to worry about, I need to create a special case to prevent it from happening.
The Fluid.class has two methods called getTemperature, one which needs a FluidStack and one which doesn't, as FluidStack isn't a registered parameter it fails to register the method, hence the Valid Parameters being false, the correct method is still registered correctly which is why I had ignored it up to this point. I need to improve the method registering system, so had left it for now.