diff --git a/Assets/Scripts/Infrastructure/Unity/GameBootstrap.cs b/Assets/Scripts/Infrastructure/Unity/GameBootstrap.cs index 75a74dc..9fa78dc 100644 --- a/Assets/Scripts/Infrastructure/Unity/GameBootstrap.cs +++ b/Assets/Scripts/Infrastructure/Unity/GameBootstrap.cs @@ -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; } }; }