BuiltBrokenModding / ICBM-2

Missile mod for minecraft forge
http://www.builtbroken.com/pages/icbm/
MIT License
55 stars 38 forks source link

Cake missile not placing cake at missile #276

Closed DarkGuardsman closed 7 years ago

DarkGuardsman commented 7 years ago

Cake missiles is placing the cake one block south of the missile. It should be placing the cake at the exact location with the missile handling the render or being placed above the cake.

DarkGuardsman commented 7 years ago

Fixed, turned out to be related the same rounding error that was breaking other features.

Rounding error was fixed in VoltzEngine by changing (int) double to (int)Math.floor(double)