Skip to content

Commit a037b9b

Browse files
authored
FIX: the light of meaning applying to sockets (#8108)
1 parent 70ae9b8 commit a037b9b

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/Modules/ModParser.lua

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5387,49 +5387,49 @@ local jewelOtherFuncs = {
53875387
end,
53885388
["Passive Skills in Radius also grant (%d+)%% increased Global Critical Strike Chance"] = function(num)
53895389
return function(node, out, data)
5390-
if node and node.type ~= "Keystone" then
5390+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
53915391
out:NewMod("CritChance", "INC", tonumber(num), data.modSource)
53925392
end
53935393
end
53945394
end,
53955395
["Passive Skills in Radius also grant %+(%d+) to Maximum Life"] = function(num)
53965396
return function(node, out, data)
5397-
if node and node.type ~= "Keystone" then
5397+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
53985398
out:NewMod("Life", "BASE", num, data.modSource)
53995399
end
54005400
end
54015401
end,
54025402
["Passive Skills in Radius also grant %+(%d+) to Maximum Mana"] = function(num)
54035403
return function(node, out, data)
5404-
if node and node.type ~= "Keystone" then
5404+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54055405
out:NewMod("Mana", "BASE", num, data.modSource)
54065406
end
54075407
end
54085408
end,
54095409
["Passive Skills in Radius also grant (%d+)%% increased Energy Shield"] = function(num)
54105410
return function(node, out, data)
5411-
if node and node.type ~= "Keystone" then
5411+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54125412
out:NewMod("EnergyShield", "INC", num, data.modSource)
54135413
end
54145414
end
54155415
end,
54165416
["Passive Skills in Radius also grant (%d+)%% increased Armour"] = function(num)
54175417
return function(node, out, data)
5418-
if node and node.type ~= "Keystone" then
5418+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54195419
out:NewMod("Armour", "INC", num, data.modSource)
54205420
end
54215421
end
54225422
end,
54235423
["Passive Skills in Radius also grant (%d+)%% increased Evasion Rating"] = function(num)
54245424
return function(node, out, data)
5425-
if node and node.type ~= "Keystone" then
5425+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54265426
out:NewMod("Evasion", "INC", num, data.modSource)
54275427
end
54285428
end
54295429
end,
54305430
["Passive Skills in Radius also grant %+(%d+) to all Attributes"] = function(num)
54315431
return function(node, out, data)
5432-
if node and node.type ~= "Keystone" then
5432+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54335433
out:NewMod("Str", "BASE", num, data.modSource)
54345434
out:NewMod("Dex", "BASE", num, data.modSource)
54355435
out:NewMod("Int", "BASE", num, data.modSource)
@@ -5439,14 +5439,14 @@ local jewelOtherFuncs = {
54395439
end,
54405440
["Passive Skills in Radius also grant %+(%d+)%% to Chaos Resistance"] = function(num)
54415441
return function(node, out, data)
5442-
if node and node.type ~= "Keystone" then
5442+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54435443
out:NewMod("ChaosResist", "BASE", num, data.modSource)
54445444
end
54455445
end
54465446
end,
54475447
["Passive Skills in Radius also grant (%d+)%% increased (%w+) Damage"] = function(num, type)
54485448
return function(node, out, data)
5449-
if node and node.type ~= "Keystone" then
5449+
if node and node.type ~= "Keystone" and node.type ~= "Socket" then
54505450
out:NewMod(firstToUpper(type).."Damage", "INC", num, data.modSource)
54515451
end
54525452
end

0 commit comments

Comments
 (0)