aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_home.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-27 02:29:55 -0400
committerhistoria <[not public]>2026-06-27 02:29:55 -0400
commit6f3d21d6e7f01155ce0c461857a053b43d329392 (patch)
tree51e96b62deb5f99a3d70c3a15ab94c520a1ee8e8 /internal/game/cmd_home.go
parent3102525d97aa6f1ad152c74b2ccfbd4b3a9b83f5 (diff)
downloadthehouseoficarus-6f3d21d6e7f01155ce0c461857a053b43d329392.tar.gz
feat: recall/home cmd, line break option
Diffstat (limited to 'internal/game/cmd_home.go')
-rw-r--r--internal/game/cmd_home.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/game/cmd_home.go b/internal/game/cmd_home.go
new file mode 100644
index 0000000..bc432c6
--- /dev/null
+++ b/internal/game/cmd_home.go
@@ -0,0 +1,7 @@
+package game
+
+import "thehouseoficarus/internal/net"
+
+func (g *Game) executeHome(sess *net.Session, args []string, rawInput string) {
+ g.doTrigger(sess, "transport_home")
+}