From 085e728d22a3369bd110b77409914cfbe9ebe611 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 16 Jun 2026 04:17:43 -0400 Subject: feat: recipe system, combining items, cooking skill --- internal/net/server.go | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'internal/net') diff --git a/internal/net/server.go b/internal/net/server.go index d909cc2..1b6c99b 100644 --- a/internal/net/server.go +++ b/internal/net/server.go @@ -29,17 +29,20 @@ const ( StateChangeDescription StateTalk StateDropAllConfirm + StateCookRecipe ) type Session struct { - Conn Conn - State SessionState - Account *AccountEntry - Player interface{} - PendingChar string - PendingPass string - Disconnecting bool - DisconnectTicks int + Conn Conn + State SessionState + Account *AccountEntry + Player interface{} + PendingChar string + PendingPass string + PendingRecipeItem string + PendingCookMenu []map[string]string + Disconnecting bool + DisconnectTicks int } type AccountEntry struct { -- cgit v1.2.3