From 6efceff8522bcc3f32c08d7828aa923b14e748f9 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Sun, 29 Sep 2024 10:30:23 +0100 Subject: [PATCH] Fix incorrect AnimLight prop write --- KeepersCompound.LGS/Database/Chunks/Property.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KeepersCompound.LGS/Database/Chunks/Property.cs b/KeepersCompound.LGS/Database/Chunks/Property.cs index ad47501..76c45e7 100644 --- a/KeepersCompound.LGS/Database/Chunks/Property.cs +++ b/KeepersCompound.LGS/Database/Chunks/Property.cs @@ -418,6 +418,8 @@ public class PropAnimLight : Property writer.Write((ushort)Mode); writer.Write(MsToBrighten); writer.Write(MsToDim); + writer.Write(MinBrightness); + writer.Write(MaxBrightness); writer.Write(CurrentBrightness); writer.Write(Rising); writer.Write(new byte[3]);