Skip to content

Commit

Permalink
Strings like "abc {some_var} xyz" no longer built in reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
pineapplemachine committed Jul 4, 2016
1 parent 7ed6551 commit 854d29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/Story.js
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ export class Story extends InkObject{
// Build string out of the content we collected
var sb = '';
contentStackForString.forEach(c => {
sb += c.toString();
sb = sb + c.toString();
});

// Return to expression evaluation (from content mode)
Expand Down

0 comments on commit 854d29d

Please sign in to comment.