Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 33 bytes modified

beta.r3js.org
-=yb4f310 2018-03-21 12:49:51 +01:00
parent 034b6eed73
commit d13cc3827b
1 changed files with 3 additions and 3 deletions

View File

@ -398,7 +398,7 @@ GameLib.CustomCode.prototype.rebuildGrid = function() {
type : GameLib.CustomCode.OCCUPIED_TYPE_SNAKE_BODY, type : GameLib.CustomCode.OCCUPIED_TYPE_SNAKE_BODY,
index : index index : index
} }
} }.bind(this)
); );
/** /**
@ -411,7 +411,7 @@ GameLib.CustomCode.prototype.rebuildGrid = function() {
type : GameLib.CustomCode.OCCUPIED_TYPE_FOOD, type : GameLib.CustomCode.OCCUPIED_TYPE_FOOD,
index : index index : index
} }
} }.bind(this)
); );
/** /**
@ -424,7 +424,7 @@ GameLib.CustomCode.prototype.rebuildGrid = function() {
type : GameLib.CustomCode.OCCUPIED_TYPE_POWERUP, type : GameLib.CustomCode.OCCUPIED_TYPE_POWERUP,
index : index index : index
} }
} }.bind(this)
); );
}.bind(this); }.bind(this);