mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-27 09:04:04 +00:00
Fixed non-integer radius support for /thaw and /snow.
This commit is contained in:
@@ -1923,7 +1923,7 @@ public class EditSession {
|
||||
public int thaw(Vector pos, double radius)
|
||||
throws MaxChangedBlocksException {
|
||||
int affected = 0;
|
||||
int radiusSq = (int)Math.pow(radius, 2);
|
||||
double radiusSq = radius*radius;
|
||||
|
||||
int ox = pos.getBlockX();
|
||||
int oy = pos.getBlockY();
|
||||
@@ -1972,7 +1972,7 @@ public class EditSession {
|
||||
public int simulateSnow(Vector pos, double radius)
|
||||
throws MaxChangedBlocksException {
|
||||
int affected = 0;
|
||||
int radiusSq = (int)Math.pow(radius, 2);
|
||||
double radiusSq = radius*radius;
|
||||
|
||||
int ox = pos.getBlockX();
|
||||
int oy = pos.getBlockY();
|
||||
|
Reference in New Issue
Block a user