aboutsummaryrefslogtreecommitdiff
path: root/internal/world
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-05 20:06:53 -0400
committerhistoria <[not public]>2026-07-05 20:07:50 -0400
commit843fa6db681e494bf46e191655323a40577542b5 (patch)
treecf32ec18d50434c14a1152147ff6e5e8b3576998 /internal/world
parent7b5ed92e003d8a4bf9bdc69d43b7354eb2260dfa (diff)
downloadthehouseoficarus-843fa6db681e494bf46e191655323a40577542b5.tar.gz
feat: remove deprecated use/station interaction model
Diffstat (limited to 'internal/world')
-rw-r--r--internal/world/room.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/world/room.go b/internal/world/room.go
index f66ce1d..9aa93f0 100644
--- a/internal/world/room.go
+++ b/internal/world/room.go
@@ -213,7 +213,6 @@ func (ro RoomObject) MarshalYAML() (interface{}, error) {
Steal *object.ObjectSteal `yaml:"steal,omitempty"`
Gather *behavior.GatherConfig `yaml:"gather,omitempty"`
Talk *behavior.TalkConfig `yaml:"talk,omitempty"`
- Use *behavior.UseConfig `yaml:"use,omitempty"`
Safespot *object.SafespotConfig `yaml:"safespot,omitempty"`
OnLook *behavior.NodeAction `yaml:"on_look,omitempty"`
}
@@ -230,7 +229,6 @@ func (ro RoomObject) MarshalYAML() (interface{}, error) {
Steal: def.Steal,
Gather: def.Gather,
Talk: def.Talk,
- Use: def.Use,
Safespot: def.Safespot,
OnLook: def.OnLook,
}, nil