Fixed issue #88.

Missing `else` was causing notes to be counted as errors.
This commit is contained in:
WrinklyNinja
2014-01-26 18:35:52 +00:00
parent 902f0f5d5a
commit 0c1d443fee
+1 -1
View File
@@ -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");