Posted October 3, 20168 yr How would I go about returning two fluid tanks in the getCapability method? How would I decide witch one to return.
October 3, 20168 yr The capability methods have an EnumFacing parameter you could use to decide which tank to return. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
October 3, 20168 yr How would that help me? How would I decide witch one to return. Psuedo-code: if (side is up) return tank1 if (side is down) return tank2 Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
October 3, 20168 yr If you don't want to do sides, you could designate which one is an output tank, and then input is easy, just fill based off fluid Or you could use the EnumFacing to get the block pulling out fluid, check it's tanks for what it's holding, and output that. Pseudo-code if(getTileEntity(pos.offset(facing)).fluid == tank1.fluid) return tank1; else if(getTileEntity(pos.offset(facing)).fluid == tank2.fluid) return tank2; [shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]
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.