Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package de.krokoyt.throwabletorchmod;
  2.  
  3. import net.minecraft.entity.player.EntityPlayer;
  4. import net.minecraft.world.World;
  5.  
  6. public class EntityThrowableSlimeTorch
  7. extends EntityThrowableTorch
  8. {
  9. public EntityThrowableSlimeTorch(World world)
  10. {
  11. super(world, false);
  12. }
  13.  
  14. public EntityThrowableSlimeTorch(World world, EntityPlayer playerEntity)
  15. {
  16. super(world, playerEntity, false);
  17. }
  18.  
  19. public EntityThrowableSlimeTorch(World world, double x, double y, double z)
  20. {
  21. super(world, x, y, z, false);
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement