Package net.minecraft.inventory

Examples of net.minecraft.inventory.AnimalChest


          if(scanInventory(inv, pstack))
            positionsBuilder.append(e.getEntityId()).append(";");

        } else if(e instanceof EntityHorse) {
          EntityHorse horse = (EntityHorse) e;
          AnimalChest chest = ReflectionHelper.getPrivateValue(EntityHorse.class, horse, LibObfuscation.HORSE_CHEST);
          if(scanInventory(chest, pstack))
            positionsBuilder.append(horse.getEntityId()).append(";");

        } else if(e instanceof EntityPlayer) {
          EntityPlayer player_ = (EntityPlayer) e;
View Full Code Here

TOP

Related Classes of net.minecraft.inventory.AnimalChest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.