diff --git a/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/Service/Matcher/MatcherSvc.cs b/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/Service/Matcher/MatcherSvc.cs index 59e53ff7..c4303c1a 100644 --- a/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/Service/Matcher/MatcherSvc.cs +++ b/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/Service/Matcher/MatcherSvc.cs @@ -18,6 +18,6 @@ namespace CoreGame.Logic (Matcher)Matcher.AllOf(Lookup.ShootBall, Lookup.BallBag); public static Matcher s_BallRecycle = - (Matcher)Matcher.AllOf(Lookup.BallRecycle, Lookup.BallData); + (Matcher)Matcher.AllOf(Lookup.BallRecycle); } } \ No newline at end of file diff --git a/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/System/Ball/BallHitTriggerSystem.cs b/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/System/Ball/BallHitTriggerSystem.cs index 5c9e9e14..ffc5983f 100644 --- a/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/System/Ball/BallHitTriggerSystem.cs +++ b/client/client/Assets/Scripts/CoreGame/AFramSync/Logic/System/Ball/BallHitTriggerSystem.cs @@ -35,7 +35,7 @@ namespace CoreGame.Logic { if (enemy.logicTransform.position.y < -1) { - enemy.isBallRecycle = true; + entity.isBallRecycle = true; } continue; }