diff --git a/source/Entities/PurpleBooster.cs b/source/Entities/PurpleBooster.cs index 307c985..8c026a3 100644 --- a/source/Entities/PurpleBooster.cs +++ b/source/Entities/PurpleBooster.cs @@ -292,6 +292,11 @@ public static void InitializeParticles() { public static void PurpleBoostBegin() { Util.TryGetPlayer(out Player player); player.CurrentBooster = null; + + // Fixes hair sticking out of the bubble sprite when entering it ducking. + // If for whatever reason this breaks an older map, this will be removed. + player.Ducking = false; + Level level = player.SceneAs(); bool? flag; if (level == null) {