From 4fa9876c1c47b3231167a4849b61f89239be8469 Mon Sep 17 00:00:00 2001 From: cake Date: Mon, 19 Jan 2026 03:35:36 +0100 Subject: [PATCH] Fix build --- .../LightlessConfiguration/Configurations/LightlessConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs b/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs index e3b2862..4a2b2c9 100644 --- a/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs +++ b/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs @@ -161,8 +161,8 @@ public class LightlessConfig : ILightlessConfiguration public string LastSeenVersion { get; set; } = string.Empty; public bool EnableParticleEffects { get; set; } = true; public HashSet OrphanableTempCollections { get; set; } = []; + public List OrphanableTempCollectionEntries { get; set; } = []; public AnimationValidationMode AnimationValidationMode { get; set; } = AnimationValidationMode.Unsafe; public bool AnimationAllowOneBasedShift { get; set; } = false; - public bool AnimationAllowNeighborIndexTolerance { get; set; } = false; }