1
0
Fork 0

Updated mp_broadcast.nas: Added missing var keywords.

This commit is contained in:
Anders Gidenstam 2010-10-09 20:10:04 +02:00
parent 57b436d199
commit 66746acbab

View file

@ -233,10 +233,10 @@ Binary.decodeCoord = func (str) {
# The same object is seldom used for both sending and receiving.
var MessageChannel = {};
MessageChannel.new = func (n = nil, process = nil) {
obj = { parents : [MessageChannel],
node : n,
process_msg : process,
old : "" };
var obj = { parents : [MessageChannel],
node : n,
process_msg : process,
old : "" };
return obj;
}
MessageChannel.update = func {