スピゴットでプレイヤーの位置をリスポーンさせる方法
まず、プレイヤーのリスポーン位置を設定するために、以下のコードを使用します:@EventHandler public void onPlayerRespawn(PlayerRespawnEvent event) { Player player = event.getPlayer(); Location respawnLocation = new Location(player.getWorld(), x, y, z); event.setRespawnLocation(respawnLocation); }>>More