rhagelstrom
February 8th, 2023, 21:33
Couple of things I noticed sniffing around
line 866 - index j is at global scope
line 957 - sDmgType is never defined
table.insert(rDamageFixed.clauses, { dice = {}, modifier = 0, stat = aAbilities[i], dmgtype = sDmgType });
line 1372 - rSave is at global scope
rSave = {};
Request - functions in this file are really difficult to hook into because in many places function calls are made local to the and not called via the PowerManager. I'm sure most would agree replaces some of this functions just to and PowerManager in front of a few function calls is not an ideal way to go about things.
Specifically, I was hoping to get local calls in the following functions to be prefaced with PowerManager.
performPCPowerAction
parsePower
Thank you for the consideration.
line 866 - index j is at global scope
line 957 - sDmgType is never defined
table.insert(rDamageFixed.clauses, { dice = {}, modifier = 0, stat = aAbilities[i], dmgtype = sDmgType });
line 1372 - rSave is at global scope
rSave = {};
Request - functions in this file are really difficult to hook into because in many places function calls are made local to the and not called via the PowerManager. I'm sure most would agree replaces some of this functions just to and PowerManager in front of a few function calls is not an ideal way to go about things.
Specifically, I was hoping to get local calls in the following functions to be prefaced with PowerManager.
performPCPowerAction
parsePower
Thank you for the consideration.