mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fixed issue #88.
Missing `else` was causing notes to be counted as errors.
This commit is contained in:
@@ -217,7 +217,7 @@ namespace boss {
|
||||
|
||||
if (it->Type() == g_message_say)
|
||||
li.append_attribute("class").set_value("say");
|
||||
if (it->Type() == g_message_tag)
|
||||
else if (it->Type() == g_message_tag)
|
||||
li.append_attribute("class").set_value("tag");
|
||||
else if (it->Type() == g_message_warn) {
|
||||
li.append_attribute("class").set_value("warn");
|
||||
|
||||
Reference in New Issue
Block a user