fix: warn on unhandled power-up type in GameBootstrap

This commit is contained in:
2026-05-14 01:23:58 +02:00
parent 1b8c7f730d
commit 2bfc2ea9c2

View File

@@ -387,6 +387,9 @@ namespace Infrastructure.Unity
case PowerUpType.SpeedBoost:
_playerInstance?.Status.AddEffect(new SpeedBoostEffect(dur));
break;
default:
Debug.LogWarning($"GameBootstrap: no effect handler for PowerUpType {t}");
break;
}
};
}