Advertisement
Guest User

Untitled

a guest
May 21st, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package com.kazeyometest.tuto.common;
  2.  
  3. import net.minecraft.entity.EntityLivingBase;
  4. import net.minecraft.entity.projectile.EntityThrowable;
  5. import net.minecraft.util.MovingObjectPosition;
  6. import net.minecraft.world.World;
  7.  
  8. public class EntitySortilege extends EntityThrowable {
  9.  
  10. public EntitySortilege(World world, EntityLivingBase entityLiving){
  11. super(world, entityLiving);
  12. }
  13.  
  14. @Override
  15. protected void onImpact(MovingObjectPosition var1) {}
  16.  
  17. public boolean canBeCollidedWith() {
  18. return false;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement