aboutsummaryrefslogtreecommitdiff
path: root/internal/world/room.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-10 00:43:29 -0400
committerhistoria <[not public]>2026-07-10 00:43:29 -0400
commit6e7c0b3ec4253bb58a815979b1f4574d08cb1f53 (patch)
treedbff1952bdbf14cd58a6128775e263b53fc64ec1 /internal/world/room.go
parent9836513d287396fabcba85956366e6410d7363ef (diff)
downloadthehouseoficarus-6e7c0b3ec4253bb58a815979b1f4574d08cb1f53.tar.gz
feat(admin): add triggers to rooms, add global triggers
Diffstat (limited to 'internal/world/room.go')
-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 bc115f8..c46c363 100644
--- a/internal/world/room.go
+++ b/internal/world/room.go
@@ -94,8 +94,6 @@ type Room struct {
Mobs []RoomMob `yaml:"mobs"`
OnEnter []behavior.Trigger `yaml:"on_enter,omitempty"`
OnExit []behavior.Trigger `yaml:"on_exit,omitempty"`
- OnFlagChange []behavior.Trigger `yaml:"on_flag_change,omitempty"`
- OnGlobalFlagChange []behavior.Trigger `yaml:"on_global_flag_change,omitempty"`
Hazard string `yaml:"hazard"`
BlockTransport bool `yaml:"block_transport"`
}