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

beta.r3js.org
-=yb4f310 2018-03-15 13:03:18 +01:00
parent f034512301
commit 64a5ae87a0
1 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ GameLib.CustomCode.prototype.advanceSnake = function(delta) {
tail.applyToMesh();
newSnake.push(tail);
newSnake.unshift(tail);
tail = parent;
}
@ -262,7 +262,7 @@ GameLib.CustomCode.prototype.advanceSnake = function(delta) {
tail.applyToMesh();
newSnake.push(tail);
newSnake.unshift(tail);
this.snake = newSnake;