Jump to content

[1.12.2] Resistance effect never ends


Jiro7

Recommended Posts

Title. I have an enchantment that gives player 30 seconds of resistance for the cost of 30 durability, which is activated when sneaking + right click the item.

 

The ability works fine, except that the effect never ends and stays at 0 seconds permanently. The only way to fix it is closing the world and entering again.

 

Additional note: the sound effect also doesn't seem to work :/

 

@SubscribeEvent
	public static void sneakBoost(InputUpdateEvent event){
		if (event.getMovementInput().sneak){
			EntityPlayer player = event.getEntityPlayer();
			if (player.getActiveItemStack().getItem().isShield(player.getActiveItemStack(), player)){
				if (!player.isPotionActive(MobEffects.RESISTANCE)){
					player.getHeldItemOffhand().damageItem(30, player);
					player.addPotionEffect(new PotionEffect(MobEffects.RESISTANCE, 600, 0));
					player.world.playSound(null, player.posX, player.posY, player.posZ, SoundEvents.BLOCK_SHULKER_BOX_CLOSE, SoundCategory.NEUTRAL, 2.0F, 1.0F);
				}
			}
		}
	}

 

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.