(Suggestion) Hatching Percentage Calculation
WayOfTheQway opened this issue ยท 1 comments
Line 181 of EggNestTileEntity all uses integer arithmetic and so the percentage is truncated to an integer. If you just make the 100 a float constant (i.e. 100.0F) it will use float arithmetic and won't truncate it. I just thought I'd point it out since the function is supposed to return a float. Happy coding!