개인 자료란 (JE)

  서버 커뮤니티

Profile Ahram 대표칭호 없음
Profile

질문하기 Java

랜덤텔레포트 오류 질문드립니다

2020.05.21 조회 수 97 추천 수 0
이해도 플러그인 
게임버전 (JE) 버킷 

랜덤 텔레포트 플러그인을 만들고있는데

자꾸 땅속에서 스폰되는 경우가 생기네요


코드는 다음과 같습니다:


public class TeleportUtils {

    public static Location generateLocation(Player player){
        Random random = new Random();
        World over = Bukkit.getServer().getWorld("world_overworld");


        int x = random.nextInt(5000)*(random.nextBoolean() ?-1:+1);
        int y = 150;
        int z = random.nextInt(5000)*(random.nextBoolean() ?-1:+1);

        Location randomLocation = new Location(over, x, y, z);

        y = randomLocation.getWorld().getHighestBlockYAt(randomLocation);
        randomLocation.setY(y);

        return randomLocation;
    }
}

Warning
댓글이 없습니다.

새로운 댓글을 등록해 주세요!