merlinmarijn Posted July 8, 2016 Posted July 8, 2016 how do i make a block i made check if there is a Ore under it or not? Quote
Choonster Posted July 8, 2016 Posted July 8, 2016 Always specify the Minecraft version you're using in the thread title. You first need to decide when this check takes place, what triggers it and what counts as an ore block. You can then use World#getBlockState to get the IBlockState at the specified BlockPos . Quote Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
merlinmarijn Posted July 8, 2016 Author Posted July 8, 2016 i added the MC version and i want it to check after a certain amount of seconds/ticks Quote
Choonster Posted July 8, 2016 Posted July 8, 2016 If the check is fairly infrequent (e.g. once a second), use World#scheduleUpdate to schedule an update tick from overrides of Block#onBlockAdded and Block#updateTick . Perform the check in the override of Block#updateTick . If the check is fairly frequent (e.g. once a tick), use a TileEntity that implements ITickable . In either case, you'll have the block's World and BlockPos so you can check the block under it. Quote Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
Recommended Posts
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.