Fix handling of BIP game in tables renumbering

This commit is contained in:
Claude Brisson
2024-07-22 12:38:51 +02:00
parent 734727c2af
commit 8cc53dc2ea

View File

@@ -132,9 +132,11 @@ sealed class Tournament <P: Pairable>(
if (pivot != null && nextTable == pivot.table) {
++nextTable
}
if (game.table != 0) {
changed = changed || game.table != nextTable
game.table = nextTable++
}
}
return changed
}