minecraft-src/net/minecraft/world/entity/ambient/AmbientCreature.java
2025-07-04 01:41:11 +03:00

16 lines
412 B
Java

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> entityType, Level level) {
super(entityType, level);
}
@Override
public boolean canBeLeashed() {
return false;
}
}