Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 11:00:05 +01:00
Negative angles will return negative number of rotations thus never looping the rotation.
Dieser Commit ist enthalten in:
Ursprung
24056df78a
Commit
bb609a47c2
@ -126,7 +126,7 @@ public class CuboidClipboard {
|
||||
return;
|
||||
}
|
||||
boolean reverse = angle < 0;
|
||||
int numRotations = (int)Math.floor(angle / 90.0);
|
||||
int numRotations = Math.abs((int)Math.floor(angle / 90.0));
|
||||
|
||||
int width = getWidth();
|
||||
int length = getLength();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren