Skip to content

Commit 7dbe3b5

Browse files
author
LocalIdentity
committed
Fix Augment typo
1 parent 3d737f5 commit 7dbe3b5

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/Modules/Main.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,9 @@ function main:LoadSettings(ignoreBuild)
638638
if node.attrib.slotOnlyTooltips then
639639
self.slotOnlyTooltips = node.attrib.slotOnlyTooltips == "true"
640640
end
641+
if node.attrib.migrateAugments then
642+
self.migrateAugments = node.attrib.migrateAugments == "true"
643+
end
641644
if node.attrib.notSupportedModTooltips then
642645
self.notSupportedModTooltips = node.attrib.notSupportedModTooltips == "true"
643646
end
@@ -871,7 +874,7 @@ function main:OpenOptionsPopup(savedState)
871874
defaultItemAffixQuality = self.defaultItemAffixQuality or 0.5,
872875
showWarnings = self.showWarnings,
873876
slotOnlyTooltips = self.slotOnlyTooltips,
874-
initialMigrateAugments = self.migrateAugments,
877+
migrateAugments = self.migrateAugments,
875878
notSupportedModTooltips = self.notSupportedModTooltips,
876879
invertSliderScrollDirection = self.invertSliderScrollDirection,
877880
disableDevAutoSave = self.disableDevAutoSave,

0 commit comments

Comments
 (0)