Advertisement
Guest User

Untitled

a guest
Apr 1st, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.60 KB | None | 0 0
  1.     public EnumActionResult onItemUse(EntityPlayer player, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
  2.     {
  3.         if(player instanceof EntityPlayerMP && worldIn.getBlockState(pos).getBlock() instanceof BlockDoor && worldIn instanceof WorldServer)
  4.         {
  5.             ((EntityPlayerMP) player).mcServer.getPlayerList().transferPlayerToDimension((EntityPlayerMP) player, Dimensions.vanqarDimensionID, new VanqarTeleporter((WorldServer) worldIn));
  6.             return EnumActionResult.SUCCESS;
  7.         }
  8.  
  9.         return EnumActionResult.FAIL;
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement