diff --git a/Modules/Main.lua b/Modules/Main.lua
index b0b91258..c2b2a0e4 100644
--- a/Modules/Main.lua
+++ b/Modules/Main.lua
@@ -87,6 +87,7 @@ function main:Init()
for _, raw in pairs(typeList) do
local newItem = itemLib.makeItemFromRaw("Rarity: Unique\n"..raw)
if newItem then
+ itemLib.normaliseQuality(newItem)
self.uniqueDB.list[newItem.name] = newItem
else
ConPrintf("Unique DB unrecognised item of type '%s':\n%s", type, raw)
@@ -97,6 +98,7 @@ function main:Init()
for _, raw in pairs(data.rares) do
local newItem = itemLib.makeItemFromRaw(raw)
if newItem then
+ itemLib.normaliseQuality(newItem)
self.rareDB.list[newItem.name] = newItem
else
ConPrintf("Rare DB unrecognised item:\n%s", raw)
diff --git a/manifest.xml b/manifest.xml
index 2ee48995..de57e43d 100644
--- a/manifest.xml
+++ b/manifest.xml
@@ -49,7 +49,7 @@
-
+