I tried to fire the event when command my custom mobs to sit or stand but nothing happened.
Just only sit/stand no event start.
The previous version is work properly well.
Comments 3
Cleaning up old tickets: This ticket had been set to 'Awaiting Response', but has not received a response from the reporter (~3 months+) so is being closed as Incomplete. If you feel this is still a valid issue then please comment, or create a new ticket following the Issue Guidelines which includes steps to reproduce the problem.
For any account or purchasing related issues, please contact Minecraft Customer Support directly, as we cannot assist with those here at the bug tracker.
Quick Links:
📓 Issue Guidelines – 💬 Mojang Support – 📧 Suggestions – 📖 Minecraft Wiki
I can confirm this is (still) a bug.
I created a custom entity with some functionality, and one of the things I added was the ability to sit. It does sit, but I cannot get it to change/execute behavior when it's sitting. It appears the minecraft:sittable code doesn't work for custom entities:
"minecraft:sittable":
{ "sit_event": "minecraft:taking_a_seat", "stand_event": "minecraft:time_to_go" }
Â
Steps to reproduce, add the following:
Component group to enable sitting:
Â
    "buckbeak:tame": {
     "allow_sitting": true,
     "minecraft:sittable":
{ Â Â Â Â Â Â "sit_event": "buckbeak_sitting", Â Â Â Â Â Â "stand_event": "buckbeak_standing" Â Â Â Â Â }
,
     "minecraft:behavior.stay_while_sitting":
{ Â Â Â Â Â Â "priority": 0 Â Â Â Â Â }
}
Â
Then the sittable event:
Â
   "events": {
    "buckbeak_sitting": {
     "add":
{ Â Â Â Â Â Â "component_groups": [ Â Â Â Â Â Â Â "buckbeak_sitting" Â Â Â Â Â Â ] Â Â Â Â Â }
    }
and then the component group (in this case, I want to set it on fire when sitting so I can easily see the code is working:
Â
   "component_groups": {
    "buckbeak_sitting": {
     "minecraft:is_ignited": {}
    }
Â
Â
Nothing ever happens. Other parts, like the "on_leash" event and subsequent component group do trigger.
Â
This is on the Windows 10 (bedrock) version
 EDIT: apologies for the crappy code, the editor doesn't outline that well
Thank you for your report!
However, this issue has been temporarily closed as Awaiting Response
Is this still an issue in the latest version? If so, can you please add it to the affected versions (or mention it if you are not the reporter).
Also, just a reminder, to make your bug report as effective as possible, please try and include the following steps to reproduce the problem:
If your ticket does not look like the example given here, then it's likely to be closed as incomplete.
This ticket will automatically reopen when you reply.
Quick Links:
📓 Issue Guidelines – 💬 Mojang Support – 📧 Suggestions – 📖 Minecraft Wiki