From fd7d92777530e42035b31ce4fb634ed11b9fb583 Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Tue, 20 Jan 2026 20:13:09 +0100 Subject: [PATCH] Make TimeChanged interactions much more likely To match reality more closely. --- NightLight.Core.Tests/InteractionListGenerators.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NightLight.Core.Tests/InteractionListGenerators.fs b/NightLight.Core.Tests/InteractionListGenerators.fs index 6e1d439..b7810c3 100644 --- a/NightLight.Core.Tests/InteractionListGenerators.fs +++ b/NightLight.Core.Tests/InteractionListGenerators.fs @@ -17,7 +17,7 @@ let private genRemoteInteraction = |> Gen.map RemoteInteraction let private genInteraction = - Gen.oneof [ genTimeChanged; genHumanInteraction; genRemoteInteraction ] + Gen.frequency [ 4, genTimeChanged; 1, genHumanInteraction; 1, genRemoteInteraction ] type ArbitraryInteractions() = static member Interactions() =