Advertisement
jayhillx

beeentity

Feb 1st, 2021
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import net.minecraft.entity.EntityType;
  2. import net.minecraft.entity.passive.BeeEntity;
  3. import net.minecraft.world.World;
  4.  
  5. public class ModBeeEntity extends BeeEntity {
  6.  
  7. public ModBeeEntity(EntityType<? extends BeeEntity> type, World worldIn) {
  8. super(type, worldIn);
  9. }
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement