From 40a589315e7a3da98b028b88083d0379677a8892 Mon Sep 17 00:00:00 2001 From: david-simoes-93 Date: Fri, 25 Nov 2022 18:05:23 +0000 Subject: [PATCH] Review comments --- Assets/Src/Entity/Fighter/FighterCastValidator.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Assets/Src/Entity/Fighter/FighterCastValidator.cs b/Assets/Src/Entity/Fighter/FighterCastValidator.cs index 7ff9b84..f0a22be 100644 --- a/Assets/Src/Entity/Fighter/FighterCastValidator.cs +++ b/Assets/Src/Entity/Fighter/FighterCastValidator.cs @@ -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 combo in kCombos) @@ -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; }