Removed clutter from log

This commit is contained in:
2026-06-22 13:35:32 +02:00
parent e431dab042
commit ca116ac77f
7 changed files with 161 additions and 86 deletions

View File

@@ -602,12 +602,12 @@ namespace Marro.PacManUdon
if (isScared)
{
Debug.Log($"{gameObject} was cought!");
//Debug.Log($"{gameObject} was cought!");
ghostManager.GhostCaught(this);
return true;
}
Debug.Log($"{gameObject} cought PacMan!");
//Debug.Log($"{gameObject} cought PacMan!");
ghostManager.CapturedPacMan();
return true;
}
@@ -725,7 +725,6 @@ namespace Marro.PacManUdon
if (ghostState == PacManGhostState.CaughtScore)
{
ReturnHome(); // Return home when unfreezing after being caught
collisionManager.PacManTryEatGhost(); // We may have skipped collisions while frozen
}
}