From 47de11cca38e8ba0fa540d95307ae84235ed1d92 Mon Sep 17 00:00:00 2001 From: Axel Cocat Date: Wed, 1 Jun 2022 20:07:53 +0200 Subject: [PATCH] chore: fix docs (#40) --- src/LuaEngine/MapMethods.h | 2 +- src/LuaEngine/PlayerMethods.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LuaEngine/MapMethods.h b/src/LuaEngine/MapMethods.h index 8ab49fd..aa85ecc 100644 --- a/src/LuaEngine/MapMethods.h +++ b/src/LuaEngine/MapMethods.h @@ -204,7 +204,7 @@ namespace LuaMap * Returns a [WorldObject] by its GUID from the map if it is spawned. * * @param ObjectGuid guid - * @return WorldObject object + * @return [WorldObject] object */ int GetWorldObject(lua_State* L, Map* map) { diff --git a/src/LuaEngine/PlayerMethods.h b/src/LuaEngine/PlayerMethods.h index 4f06379..3cd0666 100644 --- a/src/LuaEngine/PlayerMethods.h +++ b/src/LuaEngine/PlayerMethods.h @@ -1416,7 +1416,7 @@ namespace LuaPlayer /** * Returns the database textID of the [WorldObject]'s gossip header text for the [Player] * - * @param WorldObject object + * @param [WorldObject] object * @return uint32 textId : key to npc_text database table */ int GetGossipTextId(lua_State* L, Player* player)