Stage/objects test

This commit is contained in:
Andrew Gutekanst
2020-01-23 19:29:19 -05:00
parent 10c80322af
commit 28e0dafd54
8 changed files with 174 additions and 28 deletions

View File

@@ -49,7 +49,8 @@ func NewServer(config *Config) *Server {
}
// Default town stage that clients try to enter without creating.
s.stages["sl1Ns200p0a0u0"] = &Stage{}
stage := NewStage("sl1Ns200p0a0u0")
s.stages[stage.id] = stage
return s
}