diff options
Diffstat (limited to 'src/server/game/Entities/GameObject')
| -rwxr-xr-x | src/server/game/Entities/GameObject/GameObject.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/game/Entities/GameObject/GameObject.h b/src/server/game/Entities/GameObject/GameObject.h index 4231a373f35..1055342944c 100755 --- a/src/server/game/Entities/GameObject/GameObject.h +++ b/src/server/game/Entities/GameObject/GameObject.h @@ -43,10 +43,10 @@ struct GameObjectTemplate uint32 entry; uint32 type; uint32 displayId; - const char* name; - const char* IconName; - const char* castBarCaption; - const char* unk1; + std::string name; + std::string IconName; + std::string castBarCaption; + std::string unk1; uint32 faction; uint32 flags; float size; @@ -403,7 +403,7 @@ struct GameObjectTemplate }; - char const* AIName; + std::string AIName; uint32 ScriptId; // helpers |
