diff --git a/Source/spells.cpp b/Source/spells.cpp index 0be87e222..cda06de13 100644 --- a/Source/spells.cpp +++ b/Source/spells.cpp @@ -139,21 +139,15 @@ bool IsReadiedSpellValid(const PlayerStruct &player) */ void ClearReadiedSpell(PlayerStruct &player) { - bool needsRedraw = false; - int &readiedSpell = player._pRSpell; if (readiedSpell != SPL_INVALID) { readiedSpell = SPL_INVALID; - needsRedraw = true; + force_redraw = 255; } char &readiedSpellType = player._pRSplType; if (readiedSpellType != RSPLTYPE_INVALID) { readiedSpellType = RSPLTYPE_INVALID; - needsRedraw = true; - } - - if (needsRedraw) { force_redraw = 255; } }