1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[client] Land on a default plane when first connecting

This commit is contained in:
Starbeamrainbowlabs 2017-04-23 17:40:41 +01:00
parent ffd2b32abb
commit 27390a33b8

View file

@ -261,6 +261,13 @@ class BoardWindow extends EventEmitter
// The pencil that draws the lines
this.pencil = new Pencil(this.rippleLink, this, this.canvas);
// Land on a default plane
// future ask the user which plane they want to join
this.rippleLink.send({
"Event": "PlaneChange",
"NewPlaneName": "default-plane"
});
}
/**