summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/objects.js b/objects.js
index 9399269..282d01f 100644
--- a/objects.js
+++ b/objects.js
@@ -4497,14 +4497,14 @@ StageMorph.prototype.newPeerMessage = function (data, peer) {
hats.forEach(function (block) {
var process = myself.threads.startProcess(block,
myself.isThreadSafe);
- process.context.outerContext.variables.addVar('message');
+ process.context.outerContext.variables.addVar(localize('message'));
process.context.outerContext.variables.setVar(
- 'message',
+ localize('message'),
message
);
- process.context.outerContext.variables.addVar('peer');
+ process.context.outerContext.variables.addVar(localize('peer'));
process.context.outerContext.variables.setVar(
- 'peer',
+ localize('peer'),
peer
);
});