Posted February 9, 20169 yr Hello. So, I have a specific block in my mod that gets removed when right clicked with a tool. But when I right click it with something other than the tool, It still removes it. Code: @Override public void onBlockDestroyedByPlayer(World world, int xPos, int yPos, int zPos, int meta) { double x = xPos; double y = yPos; double z = zPos; world.newExplosion(null, x, y, z, 3F, true, true); } public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer entityplayer, int par6, float par7, float par8, float par9) { world.setBlockToAir(i,j, k); net.minecraft.item.Item equipped = entityplayer.getCurrentEquippedItem() != null ? entityplayer.getCurrentEquippedItem().getItem() : null; if (equipped instanceof ItemDetect); return blockConstructorCalled; thanks!
February 9, 20169 yr You're calling World#setBlockToAir before you check what the player's holding, so it always removes the block. Do you actually understand what your code is doing? 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.
February 9, 20169 yr Author Ooh yea I thought it might have been that, but I wasn't too sure. I know what my code is too. Thanks!
February 10, 20169 yr You know what imports do, too, right? 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.