From 4c60de02d850dd2a8d091b15604912f80fa01e55 Mon Sep 17 00:00:00 2001 From: Maddie <52103563+maddie480@users.noreply.github.com> Date: Sat, 10 Aug 2024 23:12:08 +0200 Subject: [PATCH] =?UTF-8?q?Rename=20BirdPath=20fields=20to=20match=20L?= =?UTF-8?q?=C3=B6nn=20fields?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fast-tracking a stable because this isn't waiting 1 more month --- Celeste.Mod.mm/Patches/BirdPath.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Celeste.Mod.mm/Patches/BirdPath.cs b/Celeste.Mod.mm/Patches/BirdPath.cs index 9351bdbfa..3805d6181 100644 --- a/Celeste.Mod.mm/Patches/BirdPath.cs +++ b/Celeste.Mod.mm/Patches/BirdPath.cs @@ -45,8 +45,8 @@ public patch_BirdPath(EntityID id, Vector2 position, Vector2[] nodes, bool onlyO [MonoModConstructor] public void ctor(EntityID id, EntityData data, Vector2 offset) { orig_ctor(id, data, offset); - this.angleFix = data.Bool("angle_fix"); - this.angleFixMaxRotation = MathF.Abs(data.Float("angle_fix_max_rotation_speed").ToRad()); + this.angleFix = data.Bool("angleFix"); + this.angleFixMaxRotation = MathF.Abs(data.Float("angleFixMaxRotation").ToRad()); } #pragma warning disable CS0626