From f3449aa99026e2e29b37f5a04557c3364483a681 Mon Sep 17 00:00:00 2001 From: Oleg Klimenko Date: Sat, 21 Dec 2024 22:45:10 +0300 Subject: [PATCH] add shuffle seed to winds randomization --- Mimir/src/helpers/Seating.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Mimir/src/helpers/Seating.php b/Mimir/src/helpers/Seating.php index 532437a8c..7a020560d 100644 --- a/Mimir/src/helpers/Seating.php +++ b/Mimir/src/helpers/Seating.php @@ -237,6 +237,7 @@ protected static function _calculateIntersectionFactor(array $seating, array $pr */ protected static function _updatePlacesToRandom(array $seating) { + self::shuffleSeed(); $tables = array_chunk($seating, 4, true); $resultSeating = []; foreach ($tables as $tableWithRatings) {