Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public EnumActionResult onItemUse(EntityPlayer player, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
- {
- if(player instanceof EntityPlayerMP && worldIn.getBlockState(pos).getBlock() instanceof BlockDoor && worldIn instanceof WorldServer)
- {
- ((EntityPlayerMP) player).mcServer.getPlayerList().transferPlayerToDimension((EntityPlayerMP) player, Dimensions.vanqarDimensionID, new VanqarTeleporter((WorldServer) worldIn));
- return EnumActionResult.SUCCESS;
- }
- return EnumActionResult.FAIL;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement