We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b93d35 commit d7f2b05Copy full SHA for d7f2b05
Token Collisions/1.7/TokenCollisions.js
@@ -100,7 +100,7 @@ const TokenCollisions = (() => { //eslint-disable-line no-unused-vars
100
function _getLastMovePts(token) {
101
let move = token.get('lastmove').split(',');
102
let coords = _.map(move, x => {
103
- return Math.abs(parseInt(x));
+ return parseInt(x);
104
});
105
106
let pts = _.map(_.range(coords.length/2), i => {
0 commit comments