mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-09-14 16:55:35 +02:00
Fixes #524
This commit is contained in:
@@ -32,6 +32,10 @@ public class MathMan {
|
||||
};
|
||||
}
|
||||
|
||||
public static int roundInt(double value) {
|
||||
return (int) (value < 0 ? value - 1 : value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns [ pitch, yaw ]
|
||||
* @param x
|
||||
|
Reference in New Issue
Block a user