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

beta.r3js.org
-=yb4f310 2018-03-23 16:12:20 +01:00
parent 8f674ccebc
commit f36b6e8f50
1 changed files with 3 additions and 3 deletions

View File

@ -235,8 +235,6 @@ GameLib.CustomCode.prototype.waitReload = function(delta) {
this.state.exploding = false;
this.state.getReady = true;
this.advanceSnake(this.speed * 2);
window.setTimeout(
function(){
@ -1158,7 +1156,6 @@ GameLib.CustomCode.prototype.backup = function() {
GameLib.CustomCode.prototype.restore = function() {
this.snake.map(
function(body) {
@ -1253,6 +1250,9 @@ GameLib.CustomCode.prototype.restore = function() {
*/
this.snake = this.backupSnake.map(
function(body) {
body.applyToMesh();
return body;
}
);