1
mirror of https://github.com/CarmJos/cn2b2t-project.git synced 2024-09-19 22:05:45 +00:00

重生随机地图

This commit is contained in:
carm 2020-05-27 13:36:43 +08:00
parent 045114f809
commit ba292d57c1

View File

@ -27,6 +27,7 @@ public class RespawnListener implements Listener {
} else {
p.sendMessage("§7由于您之前的床已被破坏或遮挡无法将您传送到您的床边。");
p.teleport(randomLocation(Bukkit.getWorld("world")));
}
}
@ -39,7 +40,7 @@ public class RespawnListener implements Listener {
p.teleport(ProfileData.getProfileData(p).bedLocation);
} else {
p.sendMessage("§7由于您之前的床已被破坏或遮挡无法将您传送到您的床边。");
p.teleport(Bukkit.getWorld("world").getSpawnLocation());
p.teleport(randomLocation(Bukkit.getWorld("world")));
}
}
@ -51,7 +52,7 @@ public class RespawnListener implements Listener {
int x = -3000 + r.nextInt(6001);
int z = -3000 + r.nextInt(6001);
int y = w.getHighestBlockYAt(x, z);
System.out.println("new random location is " + x + " " + y + " " + z);
return new Location(w, x, y, z);
}