Skip to content

Commit d7f2b05

Browse files
committed
Removed lastmove hack
1 parent 7b93d35 commit d7f2b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Token Collisions/1.7/TokenCollisions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const TokenCollisions = (() => { //eslint-disable-line no-unused-vars
100100
function _getLastMovePts(token) {
101101
let move = token.get('lastmove').split(',');
102102
let coords = _.map(move, x => {
103-
return Math.abs(parseInt(x));
103+
return parseInt(x);
104104
});
105105

106106
let pts = _.map(_.range(coords.length/2), i => {

0 commit comments

Comments
 (0)