Remove debug LogWarning from SimManager

This commit is contained in:
Daniel Lovell
2024-09-30 11:47:09 -07:00
parent 64b542a866
commit 2d97112e51
5 changed files with 32 additions and 1 deletions

View File

@@ -173,7 +173,6 @@ public class SimManager : MonoBehaviour {
// Apply the assignments to the missiles
foreach (var assignment in assignments) {
Debug.LogWarning($"Assigning interceptor {assignment.Interceptor} to threat {assignment.Threat}");
assignment.Interceptor.AssignTarget(assignment.Threat);
_threatDataMap[assignment.Threat].AssignInterceptor(assignment.Interceptor);
Debug.Log($"Interceptor {assignment.Interceptor.name} assigned to threat {assignment.Threat.name}");