Code/net/minecraft/world/entity/ambient/AmbientCreature.java

16 lines
440 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.entity.ambient;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.Mob;
import net.minecraft.world.level.Level;
public abstract class AmbientCreature extends Mob {
protected AmbientCreature(EntityType<? extends AmbientCreature> p_27403_, Level p_27404_) {
super(p_27403_, p_27404_);
}
@Override
public boolean canBeLeashed() {
return false;
}
}