fix popolamento liste

This commit is contained in:
zaccaria.majid
2023-11-08 12:27:05 +01:00
parent 3cbffb991a
commit b1d4c4a75e
2 changed files with 7 additions and 1 deletions
+7 -1
View File
@@ -917,7 +917,13 @@ namespace SMGen.Data.Services
if (next_state != "ALL_STATES" && next_state != "ND")
{
nextStates2Chk.Add(next_state);
foreach (var st in StatesAll)
{
if (st.Key != "ND")
{
nextStates2Chk.Add(st.Key);
}
}
}
}