Allow null target in EntityCreature#setTarget

This commit is contained in:
themode 2021-01-03 22:41:50 +01:00
parent c52b86822b
commit edab21baa6

View File

@ -236,7 +236,7 @@ public abstract class EntityCreature extends LivingEntity implements NavigableEn
*
* @param target the new entity target
*/
public void setTarget(@NotNull Entity target) {
public void setTarget(@Nullable Entity target) {
this.target = target;
}