From df89e593637add7865bcbf3ff47f36a5047e4655 Mon Sep 17 00:00:00 2001 From: Openarl Date: Sun, 13 Jan 2019 23:33:16 +1300 Subject: [PATCH] Release 1.4.129 Minor fixes --- CHANGELOG.md | 4 ++++ Modules/CalcPerform.lua | 2 +- Modules/ConfigOptions.lua | 2 +- Modules/ModParser-3_0.lua | 2 +- changelog.txt | 3 +++ manifest.xml | 10 +++++----- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bbf650d..b3cbf4ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 1.4.129 - 2019/01/13 + * "while Focussed" modifiers are now correctly recognised + * "+X to minimum Endurance Charges" now works correctly + ### 1.4.128 - 2019/01/11 * Fixed issue preventing Empower and Enhance supports from working diff --git a/Modules/CalcPerform.lua b/Modules/CalcPerform.lua index 12fd269c..169d5825 100644 --- a/Modules/CalcPerform.lua +++ b/Modules/CalcPerform.lua @@ -268,7 +268,7 @@ local function doActorMisc(env, actor) else output.EnduranceCharges = 0 end - output.EnduranceCharges = m_max(output.EnduranceCharges, output.FrenzyChargesMin) + output.EnduranceCharges = m_max(output.EnduranceCharges, output.EnduranceChargesMin) output.RemovableEnduranceCharges = output.EnduranceCharges - output.EnduranceChargesMin if modDB:Flag(nil, "UseSiphoningCharges") then output.SiphoningCharges = modDB:Override(nil, "SiphoningCharges") or output.SiphoningChargesMax diff --git a/Modules/ConfigOptions.lua b/Modules/ConfigOptions.lua index d34744e1..08aff533 100644 --- a/Modules/ConfigOptions.lua +++ b/Modules/ConfigOptions.lua @@ -305,7 +305,7 @@ return { { var = "minionsUseEnduranceCharges", type = "check", label = "Do your minions use Endur. Charges?", ifFlag = "haveMinion", apply = function(val, modList, enemyModList) modList:NewMod("MinionModifier", "LIST", { mod = modLib.createMod("UseEnduranceCharges", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) }, "Config") end }, - { var = "conditionFocused", type = "check", label = "Are you Focused?", ifCOnd = "Focused", apply = function(val, modList, enemyModList) + { var = "conditionFocused", type = "check", label = "Are you Focussed?", ifCond = "Focused", apply = function(val, modList, enemyModList) modList:NewMod("Condition:Focused", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) end }, { var = "buffOnslaught", type = "check", label = "Do you have Onslaught?", tooltip = "In addition to allowing any 'while you have Onslaught' modifiers to apply,\nthis will enable the Onslaught buff itself. (20% increased Attack/Cast/Movement Speed)", apply = function(val, modList, enemyModList) diff --git a/Modules/ModParser-3_0.lua b/Modules/ModParser-3_0.lua index a834037d..9b24bd34 100644 --- a/Modules/ModParser-3_0.lua +++ b/Modules/ModParser-3_0.lua @@ -756,7 +756,7 @@ local modTagList = { ["while you have avian's flight"] = { tag = { type = "Condition", var = "AffectedByAvian'sFlight" } }, ["while affected by aspect of the cat"] = { tag = { type = "Condition", varList = { "AffectedByCat'sStealth", "AffectedByCat'sAgility" } } }, ["while you have a bestial minion"] = { tag = { type = "Condition", var = "HaveBestialMinion" } }, - ["while focused"] = { tag = { type = "Condition", var = "Focused" } }, + ["while focussed"] = { tag = { type = "Condition", var = "Focused" } }, ["while leeching"] = { tag = { type = "Condition", var = "Leeching" } }, ["while using a flask"] = { tag = { type = "Condition", var = "UsingFlask" } }, ["during effect"] = { tag = { type = "Condition", var = "UsingFlask" } }, diff --git a/changelog.txt b/changelog.txt index ad93da84..dd3fa031 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +VERSION[1.4.129][2019/01/13] + * "while Focussed" modifiers are now correctly recognised + * "+X to minimum Endurance Charges" now works correctly VERSION[1.4.128][2019/01/11] * Fixed issue preventing Empower and Enhance supports from working VERSION[1.4.127][2019/01/06] diff --git a/manifest.xml b/manifest.xml index 89dbc798..e650c4e9 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,13 +1,13 @@ - + - + @@ -61,19 +61,19 @@ - + - + - +