Anonymous

Module:Test: Difference between revisions

From Elwiki
97 bytes removed ,  10 October 2023
no edit summary
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 294: Line 294:


                 for ix, inheritKey in ipairs(argTable) do
                 for ix, inheritKey in ipairs(argTable) do
                     local inheritArg = table.deep_copy(args[prefix .. inheritKey .. damageType] or args[inheritKey .. damageType] or args[prefix .. inheritKey] or args[inheritKey])
                     local inheritArg = args[prefix .. inheritKey .. damageType] or args[inheritKey .. damageType] or args[prefix .. inheritKey] or args[inheritKey]


                     if not tonumber(inheritArg[i]) then
                     if not tonumber(inheritArg[i]) then
                         inheritArg = table.deep_copy(args[prefix .. inheritKey] or args[inheritKey])
                         inheritArg = args[prefix .. inheritKey] or args[inheritKey]
                     end
                     end


                     if inheritArg and inheritArg[i] and inheritArg[i] ~= '' and
                     if inheritArg and inheritArg[i] and inheritArg[i] ~= '' and
                         (damageTypeIndex == 1 and ix ~= 1 or damageTypeIndex ~= 1) and tonumber(inheritArg[i])
                         tonumber(inheritArg[i])
                     then
                     then
                         mainArgValues[i] = applyInheritance(mainArgValues, inheritArg, mainArgValue, inheritArg[i])
                         mainArgValues[i] = applyInheritance(mainArgValues, inheritArg, mainArgValue, inheritArg[i])