X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FAtomic.js;h=3d4f541f478c95229737427fecf23e8fdf0d7b2c;hp=f42d593f4a43448d6e9dbf97dda2120eb385aa89;hb=4f298adbee00942323fc7ec517117552aeb5a08a;hpb=fe4c7e67075416c48aafe9e307bef5afea7937bc diff --git a/client/src/variants/Atomic.js b/client/src/variants/Atomic.js index f42d593f..3d4f541f 100644 --- a/client/src/variants/Atomic.js +++ b/client/src/variants/Atomic.js @@ -10,7 +10,7 @@ export const VariantRules = class AtomicRules extends ChessRules moves.forEach(m => { if (m.vanish.length > 1 && m.appear.length <= 1) //avoid castles { - // Explosion! TODO(?): drop moves which explode our king here + // Explosion! OPTION (TODO?): drop moves which explode our king here let steps = [ [-1,-1],[-1,0],[-1,1],[0,-1],[0,1],[1,-1],[1,0],[1,1] ]; for (let step of steps) {