aboutsummaryrefslogtreecommitdiff
path: root/internal/world
diff options
context:
space:
mode:
Diffstat (limited to 'internal/world')
-rw-r--r--internal/world/room.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/world/room.go b/internal/world/room.go
index e0e2d16..d542bf4 100644
--- a/internal/world/room.go
+++ b/internal/world/room.go
@@ -68,6 +68,7 @@ func (e *ExitDef) UnmarshalYAML(value *yaml.Node) error {
type Room struct {
ID int `yaml:"id"`
Name string `yaml:"name"`
+ Color string `yaml:"color"`
Description behavior.DescList `yaml:"description"`
Exits map[ExitDir]ExitDef `yaml:"exits"`
Objects []RoomObject `yaml:"objects"`