diff options
| author | historia <[not public]> | 2026-06-27 02:29:55 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-27 02:29:55 -0400 |
| commit | 6f3d21d6e7f01155ce0c461857a053b43d329392 (patch) | |
| tree | 51e96b62deb5f99a3d70c3a15ab94c520a1ee8e8 /internal/world | |
| parent | 3102525d97aa6f1ad152c74b2ccfbd4b3a9b83f5 (diff) | |
| download | thehouseoficarus-6f3d21d6e7f01155ce0c461857a053b43d329392.tar.gz | |
feat: recall/home cmd, line break option
Diffstat (limited to 'internal/world')
| -rw-r--r-- | internal/world/room.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/world/room.go b/internal/world/room.go index aced969..e0e2d16 100644 --- a/internal/world/room.go +++ b/internal/world/room.go @@ -74,8 +74,9 @@ type Room struct { ItemSpawns []SpawnDef `yaml:"item_spawns"` Mobs []RoomMob `yaml:"mobs"` OnEnter []EnterStep `yaml:"on_enter"` - Hazard string `yaml:"hazard"` - Triggers []TriggerDef `yaml:"triggers"` + Hazard string `yaml:"hazard"` + BlockTransport bool `yaml:"block_transport"` + Triggers []TriggerDef `yaml:"triggers"` } type RoomMob struct { |
