Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/Classes/Item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,10 @@ function ItemClass:ParseRaw(raw)
end
if not specName then
specVal = line:match("^Class:: (.+)$")
if specVal then specName = "Requires Class" end
if specVal then
specName = "Requires Class"
specVal = specVal:match("%w+")
end
end
if not specName then
specName, specVal = line:match("^(Requires) (.+)$")
Expand Down