From 9f67015ffe9b74759b91253696b59286b91c85bc Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Fri, 9 Aug 2024 22:32:09 -0400 Subject: [PATCH] Remove the 'normal speed' icon, which had always been unused in Blades of Exile closes #387 --- src/game/boe.text.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/game/boe.text.cpp b/src/game/boe.text.cpp index 523910a61..2b3fc4b40 100644 --- a/src/game/boe.text.cpp +++ b/src/game/boe.text.cpp @@ -644,7 +644,6 @@ void draw_pc_effects(short pc) { if(next.first == eStatus::POISON && next.second > 4) placedIcon = 1; else if(next.second > 0) placedIcon = statIcons[next.first].first; else if(next.second < 0) placedIcon = statIcons[next.first].second; - else if(next.first == eStatus::HASTE_SLOW) placedIcon = 7; if(placedIcon >= 0) { rect_draw_some_item(status_gworld, get_stat_effect_rect(placedIcon), pc_stats_gworld, dest_rect, sf::BlendAlpha); dest_rect.offset(13, 0);