So, I have a recipe handler that's expecting an integer for one of it's options. Whenever I attempt to set a recipe with KubeJS, that option gets a float passed to it and nothing happens.
Is there any way to force 2 to resolve to 2 and not 2.0?
I've tried Math.floor(), Math.trunc(), parseInt(), and even converting to a string, but whenever I log out the result it is 2.0 (except the string, that gave me 2 but still didn't work for the recipe)
