We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af85f9b commit 611e481Copy full SHA for 611e481
src/main/java/io/josemmo/bukkit/plugin/renderer/WorldAreaId.java
@@ -34,7 +34,7 @@ public class WorldAreaId {
34
* @return World area ID
35
*/
36
public static @NotNull WorldAreaId fromLocation(@NotNull Location location) {
37
- return new WorldAreaId(location.getWorld(), location.getBlockX() >> 4, location.getBlockZ() >> 4);
+ return new WorldAreaId(location.getWorld(), location.getBlockX() >> 6, location.getBlockZ() >> 6);
38
}
39
40
/**
0 commit comments