Minor fixes to a few unique jewels

This commit is contained in:
Openarl
2016-09-19 14:21:07 +10:00
parent 3a7b2bf07d
commit 89f4e5701d
4 changed files with 14 additions and 8 deletions

View File

@@ -80,7 +80,7 @@ function main:Init()
self.uniqueDB = { list = { } }
for type, typeList in pairs(data.uniques) do
for _, raw in pairs(typeList) do
local newItem = itemLib.makeItemFromRaw(raw)
local newItem = itemLib.makeItemFromRaw("Rarity: Unique\n"..raw)
if newItem then
self.uniqueDB.list[newItem.name] = newItem
else