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
My system has a special status effect icon, which should always be displayed first in the list.
In the base Foundry code, I've accounted for this via patching the Actor.temporaryEffects property to return the list of actor.effects in the preferred order.
When using Illandril's Token HUD Scaler -- which I love, BTW -- the order defaults back to the order in which the effects appear in the actor.effects.
Is there something either you or I could do to have Illandril's Token HUD Scaler respect the same order as applied via Actor.temporaryEffects?
The text was updated successfully, but these errors were encountered:
Can you point me to the specific system/module you're using, and the specific effects that are out of order? I'd prefer to test any change I make with the exact setup that has an issue as opposed to making a blind change.
You can see the override for Actor.temporaryEffects in file module/actor/maneuver.js, line number 376.
Basically, an effect whose statusId (effect.getFlag('gurps', 'statusId')) is "maneuver" must be the first one drawn, so that it appears in the upper left corner of the token.
I've already reproduced it and know what the fix will be, I just haven't quite had enough time yet to finish the fix. I'll hopefully have time this weekend.
My system has a special status effect icon, which should always be displayed first in the list.
In the base Foundry code, I've accounted for this via patching the
Actor.temporaryEffects
property to return the list ofactor.effects
in the preferred order.When using Illandril's Token HUD Scaler -- which I love, BTW -- the order defaults back to the order in which the effects appear in the
actor.effects
.Is there something either you or I could do to have Illandril's Token HUD Scaler respect the same order as applied via
Actor.temporaryEffects
?The text was updated successfully, but these errors were encountered: