Almost added TitanChess + EvolutionChess
[vchess.git] / client / src / variants / Coronation.js
index 9e12ea1..5077eb5 100644 (file)
@@ -1,6 +1,7 @@
 import { ChessRules, Move, PiPo } from "@/base_rules";
 
 export class CoronationRules extends ChessRules {
+
   getPotentialMovesFrom([x, y]) {
     let moves = super.getPotentialMovesFrom([x, y]);
     // If no queen on board, allow rook+bishop fusions:
@@ -47,4 +48,5 @@ export class CoronationRules extends ChessRules {
       notation += "=Q";
     return notation;
   }
+
 };