Optimize SimulatorStabGenerator

This commit is contained in:
2025-04-20 18:30:30 +02:00
parent 230ac09b61
commit 313b22cb44
11 changed files with 697 additions and 359 deletions
@@ -73,4 +73,8 @@ public class Point {
public Location toLocation(Player player, double dx, double dy, double dz) {
return new Location(player.getWorld(), x + dx, y + dy, z + dz, player.getLocation().getYaw(), player.getLocation().getPitch());
}
public BlockVector3 toBlockVector3() {
return BlockVector3.at(this.x, this.y, this.z);
}
}