-
Bug
-
Resolution: Incomplete
-
None
-
1.16.201 Hotfix
-
None
-
Unconfirmed
-
Windows
I have this kind of event inside a events:
"on_bee_morph": { "sequence": [ { "remove": { "component_groups": [ "minecraft:player", "bat_morph", "bee_morph", "blaze_morph", "chicken_morph", "cat_morph", "cave_spider_morph", "cow_morph", "spider_morph" ] } }, { "add": { "component_groups": [ "bee_morph", "skin_id_0" ] } } ] },
and i want to shorten it to :
"remove_all": { "remove": { "component_groups": [ "minecraft:player", "bat_morph", "bee_morph", "blaze_morph", "chicken_morph", "cat_morph", "cave_spider_morph", "cow_morph", "spider_morph" ] } }, "on_bee_morph": { "sequence": [ { "trigger": "remove_all" } , { "add": { "component_groups": [ "bee_morph", "skin_id_0" ] } } ] },
But seems it make my behavior broken, somehow the trigger is triggered after a the add called, while it should be called before the add happens since its a sequence.