From 6e3270508e5f15d13f5951d25785548144b71cb1 Mon Sep 17 00:00:00 2001 From: "Theunis J. Botha" Date: Tue, 24 Jan 2017 17:42:18 +0100 Subject: [PATCH] fix --- src/game-lib-d3-scene.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game-lib-d3-scene.js b/src/game-lib-d3-scene.js index fc66535..01c42d9 100644 --- a/src/game-lib-d3-scene.js +++ b/src/game-lib-d3-scene.js @@ -371,7 +371,7 @@ GameLib.D3.Scene.LoadSceneFromApi = function( var response = JSON.parse(xhr.responseText); if (!response.scene || response.scene.length == 0) { - return onLoaded(null, null, new Error('Could not load scene')); + return onLoaded(null, new Error('Could not load scene')); } var scene = response.scene[0];