Release 1.4.45

- Fix for DB mode being enabled on SharedItemList tooltip
- Fixed node location covering jewel tooltips in Items tab
- Fixed pre-1.4.18 crafted item migration
- Updated uniques for 3.0
This commit is contained in:
Openarl
2017-07-17 00:05:56 +10:00
parent f998b56e8f
commit d2420ee5fa
20 changed files with 87 additions and 47 deletions

View File

@@ -368,6 +368,7 @@ local modFlagList = {
["for skills used by totems"] = { keywordFlags = KeywordFlag.Totem },
["of aura skills"] = { tag = { type = "SkillType", skillType = SkillType.Aura } },
["of curse skills"] = { keywordFlags = KeywordFlag.Curse },
["of minion skills"] = { tag = { type = "SkillType", skillType = SkillType.Minion } },
["for curses"] = { keywordFlags = KeywordFlag.Curse },
["warcry"] = { keywordFlags = KeywordFlag.Warcry },
["vaal"] = { keywordFlags = KeywordFlag.Vaal },
@@ -813,6 +814,7 @@ local specialModList = {
-- Buffs/debuffs
["phasing"] = { flag("Condition:Phasing") },
["onslaught"] = { flag("Condition:Onslaught") },
["you have phasing if you've killed recently"] = { flag("Condition:Phasing", { type = "Condition", var = "KilledRecently" }) },
["your aura buffs do not affect allies"] = { flag("SelfAurasCannotAffectAllies") },
["allies' aura buffs do not affect you"] = { flag("AlliesAurasCannotAffectSelf") },
["enemies can have 1 additional curse"] = { mod("EnemyCurseLimit", "BASE", 1) },