You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because they are applied in the prepare phase for loot data, but tags are only available in the apply phase.
Here are our options:
Do nothing, tags conditions will not work for loot anymore.
Evaluate conditions in the apply phase. Problems:
Need to keep track of conditions until then.
If the deserialization fails, the reload fails (previously the object just didn't get deserialized at all).
Evaluate conditions in the prepare phase if needed, resolve tags from the resource manager directly (à la client tags) if something is looking for a tag.
I suggest supporting tag conditions in the prepare phase in general, by reading the tag contents from the ResourceManager ourselves on-demand (like the client tags do). (i.e. the last bullet point)
The text was updated successfully, but these errors were encountered:
This is because they are applied in the prepare phase for loot data, but tags are only available in the apply phase.
Here are our options:
I suggest supporting tag conditions in the prepare phase in general, by reading the tag contents from the
ResourceManager
ourselves on-demand (like the client tags do). (i.e. the last bullet point)The text was updated successfully, but these errors were encountered: