diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3b339f1c..e07c7868 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+BioRand v3.2.7 (2024-08-31)
+
+* [Feature] RE 1, add Donna, Helena, and Yoko as playable characters.
+* [Feature] RE 2, add Angie, Bela, Cassandra, Daniela, Donna, Excella, Helena, and Yoko as playable characters.
+* [Feature] RE 3, add Bela, Cassandra, Daniela, Excella, Helena, and Yoko as playable characters.
+* [Enhancement] Increase playable character dropdown limit to 128.
+* [Fix] #889: RE 2, valve handle can be placed in helicopter fire.
+
BioRand v3.2.6 (2024-02-21)
* [Fix] Randy Rando when Japanese text is enabled.
diff --git a/IntelOrca.Biohazard.BioRand/RE2/Re2NpcHelper.cs b/IntelOrca.Biohazard.BioRand/RE2/Re2NpcHelper.cs
index ac0c4557..bd90857a 100644
--- a/IntelOrca.Biohazard.BioRand/RE2/Re2NpcHelper.cs
+++ b/IntelOrca.Biohazard.BioRand/RE2/Re2NpcHelper.cs
@@ -201,7 +201,8 @@ public void CreateEmdFile(byte type, string pldPath, string baseEmdPath, string
var offset = edd.Animations[22].Offset;
var eddBuilder = edd.ToBuilder();
eddBuilder.Animations[0] = eddBuilder.Animations[22];
- eddBuilder.Animations[0].Frames = eddBuilder.Animations[0].Frames.Take(1).ToArray();
+ eddBuilder.Animations[0].Frames.Clear();
+ eddBuilder.Animations[0].Frames.Add(eddBuilder.Animations[0].Frames[0]);
eddBuilder.Animations.RemoveRange(1, eddBuilder.Animations.Count - 1);
emdFile.SetEdd(0, eddBuilder.ToEdd());
var emr = pldFile.GetEmr(0)
diff --git a/biohazard-utils b/biohazard-utils
index bab9ece4..279cf083 160000
--- a/biohazard-utils
+++ b/biohazard-utils
@@ -1 +1 @@
-Subproject commit bab9ece4df740ffcf3bb2282da4dac35e6b5c8c2
+Subproject commit 279cf08365d3edd5ef7a396e6b0a9e01e88255e5
diff --git a/biorand/biorand.csproj b/biorand/biorand.csproj
index 27fef7d0..30396eca 100644
--- a/biorand/biorand.csproj
+++ b/biorand/biorand.csproj
@@ -7,10 +7,11 @@
AnyCPU
Copyright (C) Ted John 2022-2024
Resident Evil Randomizer
- 3.2.6
+ 3.2.7
IntelOrca.Biohazard.BioRand
biorand.ico
true
+ DISABLE_CVX;$(DefineConstants)
@@ -29,8 +30,7 @@
-
+