From bbd82e7e9bd0b97e77b19b5ca85b41d5ed5cfd66 Mon Sep 17 00:00:00 2001 From: Axel Cocat Date: Sat, 29 Apr 2023 15:10:47 +0200 Subject: [PATCH] Revert "fix compile error" (#130) --- src/LuaEngine/UnitMethods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaEngine/UnitMethods.h b/src/LuaEngine/UnitMethods.h index 7159659..72d6863 100644 --- a/src/LuaEngine/UnitMethods.h +++ b/src/LuaEngine/UnitMethods.h @@ -1205,7 +1205,7 @@ namespace LuaUnit #ifdef TRINITY Eluna::Push(L, entry->Name[locale]); #else - Eluna::Push(L, entry->Name[locale]); + Eluna::Push(L, entry->name[locale]); #endif return 1; }