Addon: [1.7.69] - Track Player Debuffs times. Adding 'TDebuff_' #696
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Breaking change:
Debuff_was meant to keep track of those Aura times which are inflicted the player on the target - Debuffs.Since this version
Debuff_-> keep tracks the player debuffs. Those auras which are inflicted by the enemy on the player.TDebuff_-> keep tracks the target debuffs. Those auras which are inflicted by the player on the enemy.To migrate search for
and replace it to
To keep the naming consistent.
example usage as Dwarf Stonform
{ "Cost": 3.1, "Name": "Stoneform", "Key": "9", "InCombat": "i dont care", "WhenUsable": true, "Requirements": [ "Debuff_POISON1 > 1 || Debuff_POISON2 > 1 || Debuff_POISON3 > 1 || Debuff_POISON4 > 1 || Debuff_POISON5 > 1 || Debuff_POISON6 > 1 || Debuff_POISON7 > 1 || Debuff_POISON8 > 1 || Debuff_POISON9 > 1 || Debuff_POISON10 > 1 || Debuff_POISON11 > 1 || Debuff_DISEASE1 > 1 || Debuff_DISEASE2 > 1 || Debuff_DISEASE3 > 1 || Debuff_DISEASE4 > 1" ] }