Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
david-simoes-93 committed Nov 25, 2022
1 parent 921f42d commit 40a5893
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Assets/Src/Entity/Fighter/FighterCastValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ internal override void SpecificServersideCheck(CastRD rd)

// shift and add new cast
ShiftCombo(rd.type);
GameDebug.Log(comboCounter_[0] + " " + comboCounter_[1] + " " + comboCounter_[2] + " " + comboCounter_[3] + " " + comboCounter_[4]);
// GameDebug.Log(comboCounter_[0] + " " + comboCounter_[1] + " " + comboCounter_[2] + " " + comboCounter_[3] + " " + comboCounter_[4]);

//if combo
foreach (Tuple<CastCode, CastCode[]> combo in kCombos)
Expand All @@ -359,8 +359,6 @@ internal override void SpecificServersideCheck(CastRD rd)

if (validCombo)
{
// comboCounter_ = new CastCode[] { CastCode.None, CastCode.None, CastCode.None, CastCode.None, CastCode.None };
// timeWhenLastAttackCooldownEnded_ = 0;
rd.type = combo.Item1;
return;
}
Expand Down

0 comments on commit 40a5893

Please sign in to comment.