From da055c5ece92f501aa1f26c2ca8316f62fbc620a Mon Sep 17 00:00:00 2001 From: HungDK <> Date: Mon, 22 Dec 2025 17:51:08 +0700 Subject: [PATCH] Add c2s_CmdGatherMaterial --- Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs b/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs index c431dd82cb..69eae9a929 100644 --- a/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs +++ b/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs @@ -359,7 +359,10 @@ namespace BrewMonster.Network { Instance._gameSession.c2s_SendCmdAutoTeamSetGoal(type, goal_id, op);//{ ::c2s_SendCmdAutoTeamSetGoal(type, goal_id, op); } } - + public static void c2s_CmdGatherMaterial(int idMatter, int iToolPack, int idToolIndex, int idTool, int idTask) + { + Instance._gameSession.c2s_CmdGatherMaterial(idMatter, iToolPack, idToolIndex, idTool, idTask); + } #endregion public static void GetRoleBaseInfo(int iNumRole, List aRoleIDs)