Skip to content

Commit

Permalink
Fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystalwarrior committed Jul 2, 2024
1 parent d727be2 commit 5c21490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/notify/notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -494,14 +494,14 @@ NOTIFICATIONS_BY_IDX = {
name='suffocation_adv',
desc='Shows a suffocation bar when you are drowning or breathless.',
default=true,
adv_fn=curry(get_bar, function() return get_breath() < get_max_breath() end, "Suffocation!", LIGHT_CYAN),
adv_fn=curry(get_bar, function() return get_breath() < get_max_breath() end, "Suffocation!", COLOR_LIGHTCYAN),
on_click=nil,
},
{
name='bleeding_adv',
desc='Shows a bleeding bar when you are losing blood.',
default=true,
adv_fn=curry(get_bar, function() return get_blood() < get_max_blood() end, "Bloodloss!", LIGHT_RED),
adv_fn=curry(get_bar, function() return get_blood() < get_max_blood() end, "Bloodloss!", COLOR_RED),
on_click=nil,
},
}
Expand Down

0 comments on commit 5c21490

Please sign in to comment.