From dde563e6810124a73de5ef12e92774c540f9d62e Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 20 Jun 2026 03:51:23 -0400 Subject: feat: aps system implemented --- internal/game/action_talk.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/game/action_talk.go') diff --git a/internal/game/action_talk.go b/internal/game/action_talk.go index 2f463c7..787ce3e 100644 --- a/internal/game/action_talk.go +++ b/internal/game/action_talk.go @@ -2,6 +2,7 @@ package game import ( "fmt" + "strconv" "strings" "thehouseoficarus/internal/action" @@ -268,4 +269,7 @@ func (g *Game) applyNodeAction(sess *net.Session, na *action.NodeAction) { if na.Sawmill { g.processSawmill(sess, p) } + if na.ApsNode { + setPlayerFlag(p, "aps_node_"+strconv.Itoa(p.RoomID), true) + } } -- cgit v1.2.3