Posted September 26, 20178 yr I've been trying to add an item to a chest, but I dont know exactly how to do it. if(worldIn.getBlockState(po).getBlock() == Blocks.CHEST) { Block chest = worldIn.getBlockState(po).getBlock(); chest. } That's my code, the chest. is there from me trying to find something from auto complete but I don't know what to do. If anyone knows please reply! Thanks! Edited September 26, 20178 yr by Artsicle
September 26, 20178 yr TileEntity chestContainer = worldIn.getTileEntity(po); Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
September 26, 20178 yr Author 12 minutes ago, Draco18s said: TileEntity chestContainer = worldIn.getTileEntity(po); But what do I do after? TileEntity container = worldIn.getTileEntity(po); Edited September 26, 20178 yr by Artsicle
September 26, 20178 yr Author 26 minutes ago, diesieben07 said: You grab the IItemHandler capability from it and then insert items. Would I do it sort of like this? container.getCapability(Capability<IItemHandler.class>,EnumFacing.NORTH); EDIT: Found it. itemhandler = container.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); Edited September 26, 20178 yr by Artsicle
September 26, 20178 yr 21 minutes ago, Artsicle said: EnumFacing.NORTH You should use the direction you want to insert the items from. For chests, it doesn't matter, but for other containers (like the furnace) it does. If you want "everything" (e.g. a non-specific side) then pass null. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.