Fix Stage init

This commit is contained in:
Andrew Gutekanst
2020-01-23 20:22:42 -05:00
parent 1afe6860e2
commit 0ac35f8743

View File

@@ -27,6 +27,7 @@ type Stage struct {
// NewStage creates a new stage with intialized values.
func NewStage(ID string) *Stage {
s := &Stage{
id: ID,
objects: make(map[uint32]*StageObject),
clients: make(map[*Session]uint32),
}