SMALL
낙뎀 데미지 이벤트
Player 가 낙사 데미지를 입을때의 이벤트이다.
public class EntityFallDamageEvent implements Listener {
@EventHandler
public void onEntityDamage(EntityDamageEvent e) {
e.setCancelled(true);
}
}
해당 데미지를 조절하거나 Cancelled 할 수 있다.
반응형
LIST
'마인크래프트 플러그인' 카테고리의 다른 글
Form_Event 농사 이벤트 (0) | 2023.05.18 |
---|---|
마인크래프트 프로젝트 기본 셋팅 (1) | 2023.05.17 |