From b019beff82275e497265374e5d0f6d8ea4186005 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 8 Mar 2026 23:19:05 +0000 Subject: [PATCH] feat(shared): add craft, build, dropoff goal types Co-Authored-By: Claude Opus 4.6 --- shared/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/src/types.ts b/shared/src/types.ts index 61a181b..6500a3f 100644 --- a/shared/src/types.ts +++ b/shared/src/types.ts @@ -79,7 +79,7 @@ export interface StatModifiers { } export type MovementState = 'idle' | 'walking'; -export type GoalType = 'wander' | 'eat' | 'rest' | 'gather'; +export type GoalType = 'wander' | 'eat' | 'rest' | 'gather' | 'craft' | 'build' | 'dropoff'; export interface Movement { state: MovementState;