diff options
Diffstat (limited to '')
| -rw-r--r-- | src/main/java/com/MylesAndMore/tumble/api/Generator.java | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/com/MylesAndMore/tumble/api/Generator.java b/src/main/java/com/MylesAndMore/tumble/api/Generator.java index 5a1feba..1be071d 100644 --- a/src/main/java/com/MylesAndMore/tumble/api/Generator.java +++ b/src/main/java/com/MylesAndMore/tumble/api/Generator.java @@ -17,7 +17,6 @@ public class Generator {              for (int x = Cx - radius; x <= Cx + radius; x++) {                  for (int z = Cz - radius; z <= Cz + radius; z++) {                      if ((Cx - x) * (Cx - x) + (Cz - z) * (Cz - z) <= rSq) { -                        Location block = new Location(world, x, y, z);                          world.getBlockAt(x, y, z).setType(material);                      }                  }  | 
