Skip to content

Commit

Permalink
Fixed: Restoring a savegame at a choice menu froze the game.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteinbeck committed Mar 20, 2016
1 parent 472e05b commit b80d791
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/WebStoryEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -7263,7 +7263,7 @@ define("WSE", function (EventBus, assets, commands, dataSources, functions) {

"use strict";

var WSE = {}, version = "2015.12.3-final.1603171627";
var WSE = {}, version = "2015.12.4-final.1603201040";

EventBus.inject(WSE);

Expand Down Expand Up @@ -9681,7 +9681,7 @@ define("WSE.Interpreter", function (
}

interpreter.stage.removeChild(cur);
interpreter.commands.choice(com, interpreter);
WSE.commands.choice(com, interpreter);
interpreter.waitCounter -= 1;
}
}(this));
Expand Down
2 changes: 1 addition & 1 deletion bin/WebStoryEngine.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/Interpreter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ define("WSE.Interpreter", function (
}

interpreter.stage.removeChild(cur);
interpreter.commands.choice(com, interpreter);
WSE.commands.choice(com, interpreter);
interpreter.waitCounter -= 1;
}
}(this));
Expand Down
2 changes: 1 addition & 1 deletion js/WSE.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ define("WSE", function (EventBus, assets, commands, dataSources, functions) {

"use strict";

var WSE = {}, version = "2015.12.3-final.1603171627";
var WSE = {}, version = "2015.12.4-final.1603201040";

EventBus.inject(WSE);

Expand Down

0 comments on commit b80d791

Please sign in to comment.