Skip to content

Commit 6c691b0

Browse files
author
LocalIdentity
committed
Empty parsing for the line
1 parent 8d4d2f6 commit 6c691b0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Data/ModCache.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3522,9 +3522,7 @@ c["Can Block damage from all Hits Cannot use Shield Skills"]={nil,"Can Block dam
35223522
c["Can Evade all Hits"]={nil,"Can Evade all Hits "}
35233523
c["Can Evade all Hits 75% less Evasion Rating"]={nil,"Can Evade all Hits 75% less Evasion Rating "}
35243524
c["Can Evade all Hits if you have not been Hit Recently"]={nil,"Can Evade all Hits if you have not been Hit Recently "}
3525-
c["Can Socket a non-Unique Basic Jewel into the Phylactery"]={nil,"Can Socket a non-Unique Basic Jewel into the Phylactery "}
3526-
c["Can Socket a non-Unique Basic Jewel into the Phylactery 100% increased Effect of the Socketed Jewel"]={nil,"Can Socket a non-Unique Basic Jewel into the Phylactery 100% increased Effect of the Socketed Jewel "}
3527-
c["Can Socket a non-Unique Basic Jewel into the Phylactery 100% increased Effect of the Socketed Jewel 50% more Mana Cost of Skills if you have no Energy Shield"]={nil,"Can Socket a non-Unique Basic Jewel into the Phylactery 100% increased Effect of the Socketed Jewel 50% more Mana Cost of Skills if you have no Energy Shield "}
3525+
c["Can Socket a non-Unique Basic Jewel into the Phylactery"]={{},nil}
35283526
c["Can be modified while Corrupted"]={nil,"Can be modified while Corrupted "}
35293527
c["Can be modified while Corrupted +150 to maximum Life"]={nil,"Can be modified while Corrupted +150 to maximum Life "}
35303528
c["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"]={nil,"Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges "}

src/Modules/ModParser.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2844,6 +2844,7 @@ local specialModList = {
28442844
["no inherent mana regeneration"] = { flag("Condition:NoInherentManaRegen") },
28452845
["%+1 ring slot"] = { flag("AdditionalRingSlot") },
28462846
["regenerate (%D+) equal to (%d+)%% of maximum (%D+) per second"] = function(_, resource1, num, resource2) return { mod( combineToUpper(resource1) .. "Regen", "BASE", 1, { type = "PercentStat", stat = combineToUpper(resource2), percent = num } )} end,
2847+
["can socket a non%-unique basic jewel into the phylactery"] = { },
28472848
-- Mercenary
28482849
-- +2 Weapon Set Passive Skill Points
28492850
["%+(%d) weapon set passive skill points"] = function(num) return { mod("WeaponSetPassivePoints", "BASE", num) } end,

0 commit comments

Comments
 (0)