Fixed a bug in angle clamp
This commit is contained in:
parent
7df7a141e8
commit
fb67d9ec53
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ public class MathHelper extends net.minecraft.util.MathHelper
|
|||
{
|
||||
while (var < min)
|
||||
{
|
||||
var += min;
|
||||
var += max;
|
||||
}
|
||||
while (var > max)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue