Skip to content

Commit ded0ba3

Browse files
committed
Fix spelling
1 parent f556db3 commit ded0ba3

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
<File name="Data/ModCorrupted.lua" part="program" sha1="37602fae17e519b99b547dc4b7c377b2e39c928e" />
139139
<File name="Data/ModFlask.lua" part="program" sha1="d577f560c0abe0776a2b37eff17203a452308cdd" />
140140
<File name="Data/ModItem.lua" part="program" sha1="b0c5501478746932c4f5a1a8393f7890afe8f700" />
141-
<File name="Data/ModItemExlusive.lua" part="program" sha1="15bfcca27655f2deb997d5f0f432b0a0ba92cf01" />
141+
<File name="Data/ModItemExclusive.lua" part="program" sha1="15bfcca27655f2deb997d5f0f432b0a0ba92cf01" />
142142
<File name="Data/ModJewel.lua" part="program" sha1="4b3562c18a8242215498e3ac449925db1733e598" />
143143
<File name="Data/ModMap.lua" part="program" sha1="29edb01606d86bf46267fbe91ad1dd51eef52dae" />
144144
<File name="Data/ModRunes.lua" part="program" sha1="a14dfdea09c48f29fd830b00fb37141e66f86359" />
File renamed without changes.

src/Data/Uniques/Special/Generated.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ data.uniques.generated = { }
99
local excludedItemKeystones = {
1010
}
1111

12-
local uniqueMods = LoadModule("Data/ModItemExlusive")
12+
local uniqueMods = LoadModule("Data/ModItemExclusive")
1313

1414
do
1515
local againstMods = { }

src/Export/Scripts/mods.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ end)
242242
writeMods("../Data/ModJewel.lua", function(mod)
243243
return (mod.Domain == 11 and (mod.GenerationType == 1 or mod.GenerationType == 2)) or (mod.Domain == 21 and mod.GenerationType == 3)
244244
end)
245-
writeMods("../Data/ModItemExlusive.lua", function(mod) -- contains primarily uniques and items implicits but also other mods only available on a single base or unique.
245+
writeMods("../Data/ModItemExclusive.lua", function(mod) -- contains primarily uniques and items implicits but also other mods only available on a single base or unique.
246246
return (mod.Domain == 1 or mod.Domain == 2 or mod.Domain == 11 or mod.Domain == 22) and mod.GenerationType == 3
247247
and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1])
248248
and not mod.Id:match("^Synthesis") and not mod.Id:match("Royale") and not mod.Id:match("Cowards") and not mod.Id:match("Map") and not mod.Id:match("Ultimatum") and not mod.Id:match("SpecialCorruption")

src/Export/Scripts/uModsToText.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ local function writeMods(out, statOrder)
5757
end
5858
end
5959

60-
local uniqueMods = LoadModule("../Data/ModItemExlusive.lua")
60+
local uniqueMods = LoadModule("../Data/ModItemExclusive.lua")
6161
for _, name in ipairs(itemTypes) do
6262
local out = io.open("../Data/Uniques/"..name..".lua", "w")
6363
local statOrder = {}

0 commit comments

Comments
 (0)