Skip to content

Commit 091c4b8

Browse files
committed
fix: spelling
1 parent a663437 commit 091c4b8

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/Classes/CalcBreakdownControl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ function CalcBreakdownClass:AddModSection(sectionData, modList)
275275
-- Build list of modifiers to display
276276
local cfg = (sectionData.cfg and actor.mainSkill[sectionData.cfg.."Cfg"] and copyTable(actor.mainSkill[sectionData.cfg.."Cfg"], true)) or { }
277277
cfg.source = sectionData.modSource
278-
cfg.ignoreSourceinCheckConditions = true
278+
cfg.ignoreSourceInCheckConditions = true
279279
cfg.actor = sectionData.actor
280280
local rowList
281281
local modStore = (sectionData.enemy and actor.enemy.modDB) or (sectionData.cfg and actor.mainSkill.skillModList) or actor.modDB

src/Classes/CalcSectionControl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ function CalcSectionClass:FormatStr(str, actor, colData)
190190
local modCfg = (sectionData.cfg and actor.mainSkill[sectionData.cfg.."Cfg"]) or { }
191191
if sectionData.modSource then
192192
modCfg.source = sectionData.modSource
193-
modCfg.ignoreSourceinCheckConditions = true
193+
modCfg.ignoreSourceInCheckConditions = true
194194
end
195195
if sectionData.actor then
196196
modCfg.actor = sectionData.actor

src/Classes/ModDB.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ function ModDBClass:FlagInternal(context, cfg, flags, keywordFlags, source, ...)
198198
if modList then
199199
for i = 1, #modList do
200200
local mod = modList[i]
201-
local checkSource = not cfg or not cfg.ignoreSourceinCheckConditions
201+
local checkSource = not cfg or not cfg.ignoreSourceInCheckConditions
202202
if mod.type == "FLAG" and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not checkSource or not source or mod.source:match("[^:]+") == source) then
203203
if mod[1] then
204204
if context:EvalMod(mod, cfg) then

src/Classes/PartyTab.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
371371
self:ParseBuffs(self.enemyModList, self.controls.enemyMods.buf, "EnemyMods", self.controls.simpleEnemyMods)
372372
self.build.buildFlag = true
373373
end)
374-
self.controls.rebuild.tooltipText = "^7Reparse all the inputs incase they have been disabled or they have changed since loading the build or importing"
374+
self.controls.rebuild.tooltipText = "^7Reparse all the inputs in case they have been disabled or they have changed since loading the build or importing"
375375
self.controls.rebuild.x = function()
376376
return (self.width > theme.widthThreshold1) and 8 or (-328)
377377
end

src/Data/Uniques/Special/Generated.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ do
104104
table.insert(data.uniques.generated, table.concat(prism, "\n"))
105105
end
106106

107-
local treedata = LoadModule("TreeData/" .. latestTreeVersion .. "/tree.lua")
108-
local nodes = treedata.nodes
107+
local treeData = LoadModule("TreeData/" .. latestTreeVersion .. "/tree.lua")
108+
local nodes = treeData.nodes
109109

110110
do
111111
local megalomaniac = {

0 commit comments

Comments
 (0)