Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello. I'm working on update for my mod from minecraft 1.12.2 to minecraft 1.19.2 and I got a problem with item usage on mobile.

In 1.12.2 I used "itemInteractionForEntity" method for it. It looks like in 1.19.2 it's called "interactLivingEntity".

Everything fine when I use it on my own mob, or some others like parrots, but for such mobs as cat and wolves it doesn't work.

I spent some time trying to investigate this problem and debug my code, and I found that item "interactLivingEntity" method doesn't trigger for those pets at all.

Could someone please help me with it? What am I doing wrong?

 

Here is a link on my item https://github.com/NightKosh/Sophisticated-wolves/blob/feature/1.19.2_update/src/main/java/sophisticated_wolves/item/ItemDogTag.java

Edited by Kosh

50 minutes ago, Kosh said:

I spent some time trying to investigate this problem and debug my code, and I found that item "interactLivingEntity" method doesn't trigger for those pets at all.

That's because the interaction that happens on right click for tamed animals (like the wolf and cat) forces them to sit, which is a consumable action, preventing the stack logic from executing. Since the only hook to get around this is an event, you would need to subscribe to `PlayerInteractEvent$EntityInteract` and call the `#interactLivingEntity` method on your item stack there.

Follow the code through from Mob.interact() for a cat.

It will pretty much ignore you unless your item is food.

 

Unfortunately, there is no item tag for name tags.

Mob.checkAndHandleImportantInteractions() hardwires the vanilla name tag item instance for special handling instead of usiing an item tag.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

  • Kosh changed the title to [1.19.2, SOLVED] Item usage on mobs

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.