Skip to content

Commit

Permalink
chore(BoardCard): remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Dec 13, 2023
1 parent 501ce30 commit 4b808de
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions Hearthstone Deck Tracker/Utility/BoardDamage/BoardCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,23 +131,5 @@ private bool IsAbleToAttack(bool active, bool isWeapon)
return (!Windfury || AttacksThisTurn < 2) && (Windfury || AttacksThisTurn < 1);
return true;
}

private int V07TRONAttack(bool active)
{
if(!active)
return _stdAttack * 4;

switch(AttacksThisTurn)
{
case 0:
return _stdAttack * 4;
case 1:
return _stdAttack * 3;
case 2:
return _stdAttack * 2;
default:
return _stdAttack;
}
}
}
}

0 comments on commit 4b808de

Please sign in to comment.