Fix last fix :)
authorBenjamin Auder <benjamin.auder@somewhere>
Fri, 3 Dec 2021 07:23:30 +0000 (08:23 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Fri, 3 Dec 2021 07:23:30 +0000 (08:23 +0100)
app.js
base_rules.js

diff --git a/app.js b/app.js
index a6ee234..0a1fffe 100644 (file)
--- a/app.js
+++ b/app.js
@@ -103,7 +103,7 @@ function showNewGameForm() {
     toggleVisible("newGameForm");
     import(`/variants/${vname}/class.js`).then(module => {
       window.V = module.default;
-      V.Aliases.forEach(e => window[e.key] = e.val);
+      for (const [k, v] of Object.entries(V.Aliases)) window[k] = v;
       prepareOptions();
     });
   }
@@ -448,7 +448,7 @@ function initializeGame(obj) {
   const options = obj.options || {};
   import(`/variants/${obj.vname}/class.js`).then(module => {
     window.V = module.default;
-    V.Aliases.forEach(e => window[e.key] = e.val);
+    for (const [k, v] of Object.entries(V.Aliases)) window[k] = v;
     // Load CSS. Avoid loading twice the same stylesheet:
     const allIds = [].slice.call($.styleSheets).map(s => s.id);
     const newId = obj.vname + "_css";
index 9444e7b..34f0e7e 100644 (file)
@@ -8,7 +8,7 @@ import Move from "/utils/Move.js";
 export default class ChessRules {
 
   static get Aliases() {
-    return [{'C': ChessRules}];
+    return {'C': ChessRules};
   }
 
   /////////////////////////