mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Eluna fix the distinction between Cstring and String for mangos
This commit is contained in:
@@ -136,7 +136,11 @@ namespace LuaQuery
|
|||||||
{
|
{
|
||||||
uint32 col = Eluna::CHECKVAL<uint32>(L, 2);
|
uint32 col = Eluna::CHECKVAL<uint32>(L, 2);
|
||||||
if (col < RESULT->GetFieldCount())
|
if (col < RESULT->GetFieldCount())
|
||||||
|
#ifdef MANGOS
|
||||||
|
Eluna::Push(L, RESULT->Fetch()[col].GetCppString());
|
||||||
|
#else
|
||||||
Eluna::Push(L, RESULT->Fetch()[col].GetString());
|
Eluna::Push(L, RESULT->Fetch()[col].GetString());
|
||||||
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,7 +148,11 @@ namespace LuaQuery
|
|||||||
{
|
{
|
||||||
uint32 col = Eluna::CHECKVAL<uint32>(L, 2);
|
uint32 col = Eluna::CHECKVAL<uint32>(L, 2);
|
||||||
if (col < RESULT->GetFieldCount())
|
if (col < RESULT->GetFieldCount())
|
||||||
|
#ifdef MANGOS
|
||||||
|
Eluna::Push(L, RESULT->Fetch()[col].GetString());
|
||||||
|
#else
|
||||||
Eluna::Push(L, RESULT->Fetch()[col].GetCString());
|
Eluna::Push(L, RESULT->Fetch()[col].GetCString());
|
||||||
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user