Преглед на файлове

fix: franctions being rendered in incorrect order on end screen

lairaalmas преди 2 месеца
родител
ревизия
bd4ddb1f8d
променени са 1 файла, в които са добавени 10 реда и са изтрити 0 реда
  1. 10 0
      js/games/squareTwo.js

+ 10 - 0
js/games/squareTwo.js

@@ -342,6 +342,16 @@ const squareTwo = {
         self.blocks.top.list.length,
         self.blocks.bottom.list.length,
       ];
+
+      if (gameMode === 'b') {
+        const leftNom = nominators[0];
+        const leftDenom = denominators[0];
+        nominators[0] = nominators[1];
+        denominators[0] = denominators[1];
+        nominators[1] = leftNom;
+        denominators[1] = leftDenom;
+      }
+
       const renderList = [];
 
       const padding = 100;