Package de.eydamos.backpack.saves

Examples of de.eydamos.backpack.saves.PlayerSave


        }
        return 0;
    }

    public static void pickupItem(EntityPlayer entityPlayer, ItemStack itemStack) {
        PlayerSave playerSave = new PlayerSave(entityPlayer);
        ItemStack backpack = playerSave.getPersonalBackpack();
        if(backpack != null) {
            InventoryPickup inventoryPickup = new InventoryPickup();
            inventoryPickup.setInventoryContent(backpack);

            ContainerPickup container = new ContainerPickup(ItemBackpackBase.getInventory(backpack, entityPlayer), new BackpackSave(backpack));
View Full Code Here

TOP

Related Classes of de.eydamos.backpack.saves.PlayerSave

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.