Changes

m
'Clear', not 'Cleared'
Line 62: Line 62:  
     _raid_battle_bg_color = "#81C784",
 
     _raid_battle_bg_color = "#81C784",
 
     _boss_battle_color = "red",
 
     _boss_battle_color = "red",
     _cleared_battle_color = "blue",
+
     _clear_battle_color = "blue",
 
     --_resource_node_bg_color = "lightgreen",
 
     --_resource_node_bg_color = "lightgreen",
 
     _resource_node_bg_color = "initial",
 
     _resource_node_bg_color = "initial",
Line 99: Line 99:  
         row.formation = row.formation .. "<br />(Final)"
 
         row.formation = row.formation .. "<br />(Final)"
 
     end
 
     end
     if row.tags.cleared then
+
     if row.tags.clear then
 
         row.formation = row.formation .. "<br />(Clear)"
 
         row.formation = row.formation .. "<br />(Clear)"
 
     end
 
     end
Line 106: Line 106:  
         color = self._boss_battle_color
 
         color = self._boss_battle_color
 
     end
 
     end
     if row.tags.final or row.tags.cleared then
+
     if row.tags.final or row.tags.clear then
 
         font_weight = "bold"
 
         font_weight = "bold"
 
     end
 
     end
     if row.tags.cleared then
+
     if row.tags.clear then
         color = self._cleared_battle_color
+
         color = self._clear_battle_color
 
     end
 
     end
 
     return { values = { formation = row.formation }, color = color, font_weight = font_weight }
 
     return { values = { formation = row.formation }, color = color, font_weight = font_weight }
Line 120: Line 120:  
         color = self._boss_battle_color
 
         color = self._boss_battle_color
 
     end
 
     end
     if row.tags.final or row.tags.cleared then
+
     if row.tags.final or row.tags.clear then
 
         font_weight = "bold"
 
         font_weight = "bold"
 
     end
 
     end
     -- if a composition is at a boss node but is tagged as a cleared comp, override the boss node color
+
     -- if a composition is at a boss node but is tagged as a clear comp, override the boss node color
     if row.tags.cleared then
+
     if row.tags.clear then
         color = self._cleared_battle_color
+
         color = self._clear_battle_color
 
     end
 
     end
 
     return { values = { basexp = row.basexp }, color = color, font_weight = font_weight }
 
     return { values = { basexp = row.basexp }, color = color, font_weight = font_weight }
Line 139: Line 139:  
         color = self._boss_battle_color
 
         color = self._boss_battle_color
 
     end
 
     end
     if row.tags.final or row.tags.cleared then
+
     if row.tags.final or row.tags.clear then
 
         font_weight = "bold"
 
         font_weight = "bold"
 
     end
 
     end
     if row.tags.cleared then
+
     if row.tags.clear then
         color = self._cleared_battle_color
+
         color = self._clear_battle_color
 
     end
 
     end
 
     return { values = { as = row.as }, color = color, font_weight = font_weight }
 
     return { values = { as = row.as }, color = color, font_weight = font_weight }