From 19966f3828d3a4ec365f8b5bb406f64d8cb253ef Mon Sep 17 00:00:00 2001 From: cake Date: Tue, 6 Jan 2026 15:06:21 +0100 Subject: [PATCH] Default to unsafe --- .../LightlessConfiguration/Configurations/LightlessConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs b/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs index 8f1a3de..9e92b63 100644 --- a/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs +++ b/LightlessSync/LightlessConfiguration/Configurations/LightlessConfig.cs @@ -159,8 +159,8 @@ public class LightlessConfig : ILightlessConfiguration public string LastSeenVersion { get; set; } = string.Empty; public bool EnableParticleEffects { get; set; } = true; public HashSet OrphanableTempCollections { get; set; } = []; - public AnimationValidationMode AnimationValidationMode { get; set; } = AnimationValidationMode.Safe; - public bool AnimationAllowOneBasedShift { get; set; } = true; + public AnimationValidationMode AnimationValidationMode { get; set; } = AnimationValidationMode.Unsafe; + public bool AnimationAllowOneBasedShift { get; set; } = false; public bool AnimationAllowNeighborIndexTolerance { get; set; } = false; }