diff options
| author | leak <leakzx@googlemail.com> | 2011-04-29 19:59:40 +0200 |
|---|---|---|
| committer | leak <leakzx@googlemail.com> | 2011-04-29 19:59:40 +0200 |
| commit | 01a79947d56eae6ed9f47dc2b41897d77cc91f41 (patch) | |
| tree | 5a932eaa631d371b0ffa17d74e7726adf5fc3d55 /src/server/game/Entities/GameObject | |
| parent | 6fb2bf4224b20c0ccecfceaca8d39ae27b8677ea (diff) | |
More cleanup after last commit spree
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 |
