Skip to content

Commit

Permalink
Use brighter green color for Defusing Alert
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed Oct 2, 2023
1 parent 29bd5a3 commit 85ab98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Features/Hud/DefusingAlert.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class DefusingAlert : public TogglableFeature<DefusingAlert> {
[[nodiscard]] static cs2::Color getTimerColor(PlantedC4 bomb) noexcept
{
if (const auto canDefuse = bomb.canBeDefused(); canDefuse.has_value())
return *canDefuse ? cs2::Color{ 0, 128, 0, 255 } : cs2::Color{ 255, 0, 0, 255 };
return *canDefuse ? cs2::Color{ 0, 180, 0, 255 } : cs2::Color{ 255, 0, 0, 255 };
else
return cs2::Color{ 255, 255, 255, 255 };
}
Expand Down

0 comments on commit 85ab98e

Please sign in to comment.