From dcaeb0e03d1d8cee8d426ae8c9b3fc59543e80c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cle=CC=81ment=20Pre=CC=81vost?= Date: Wed, 7 Jan 2015 01:13:23 +0100 Subject: [PATCH] mutable position --- www/js/catan/js/Position.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/catan/js/Position.js b/www/js/catan/js/Position.js index 6126fff..a9471af 100644 --- a/www/js/catan/js/Position.js +++ b/www/js/catan/js/Position.js @@ -6,7 +6,7 @@ this.line = line; // Make the position immutable - Object.freeze(this); + //Object.freeze(this); }; })(Catan);