From 4909b17ffa56c20466f2e6562798ba967ad0275c Mon Sep 17 00:00:00 2001 From: sogladev Date: Tue, 30 Dec 2025 21:53:31 +0100 Subject: [PATCH] fix(LuaEngine/PlayerMethods): Update SendTrainerList (#352) --- src/LuaEngine/methods/PlayerMethods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaEngine/methods/PlayerMethods.h b/src/LuaEngine/methods/PlayerMethods.h index 87cc921..891477c 100644 --- a/src/LuaEngine/methods/PlayerMethods.h +++ b/src/LuaEngine/methods/PlayerMethods.h @@ -2296,7 +2296,7 @@ namespace LuaPlayer { Creature* obj = ALE::CHECKOBJ(L, 2); - player->GetSession()->SendTrainerList(obj->GET_GUID()); + player->GetSession()->SendTrainerList(obj); return 0; }