From f32712245cf49ebf1c104efc64f5f4598db6c0cb Mon Sep 17 00:00:00 2001 From: "nicolas.barbosa" Date: Thu, 6 Jun 2024 21:21:38 +0200 Subject: [PATCH] correction erreur code comparer --- Sources/CoreLibrary/Core/Code.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CoreLibrary/Core/Code.cs b/Sources/CoreLibrary/Core/Code.cs index 747ba0d..c3da167 100644 --- a/Sources/CoreLibrary/Core/Code.cs +++ b/Sources/CoreLibrary/Core/Code.cs @@ -113,7 +113,7 @@ namespace CoreLibrary.Core for (int i = 0; i < mesJetons.Count; ++i) { - if (mesJetons[i] == sesJetons[i]) + if (mesJetons[i]! == sesJetons[i]!) { mesJetons[i] = null; sesJetons[i] = null;