diff options
author | Shocker <none@none> | 2010-09-08 09:35:54 +0300 |
---|---|---|
committer | Shocker <none@none> | 2010-09-08 09:35:54 +0300 |
commit | 665bc1ffb923730eb8da884b7609c5e0ff6d801a (patch) | |
tree | 0b62b2d80613ad95e425603394db5fc83f142d5e | |
parent | f9ecc36fb02b1a92b48550337d641acf25b81e28 (diff) |
Typo fixes, closes issue 3885, thanks zaphod & Paradox
--HG--
branch : trunk
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp | 2 | ||||
-rw-r--r-- | src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 3f7b66e2163..53281916c70 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -27648,6 +27648,7 @@ INSERT INTO `trinity_string` (`entry`,`content_default`,`content_loc1`,`content_ (5026, 'DisplayID: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (5027, 'Name: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (5028, 'Lootid: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +(5029, 'Result limit reached (max results: %d)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6604, 'You cannot say, yell or emote until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6605, 'You cannot whisper until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6606, 'You cannot write to channels until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), diff --git a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp index f6ca048c59c..f853e8d8795 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp @@ -290,7 +290,7 @@ class instance_uldaman : public InstanceMapScript } // end GetData64 }; - InstanceScript* GetInstanceScript(InstanceMap* pMap) + InstanceScript* GetInstanceScript(InstanceMap* pMap) const { return new instance_uldaman_InstanceMapScript(pMap); } diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp index 70f4df650a4..72834d07fb6 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp @@ -153,7 +153,7 @@ class instance_zulgurub : public InstanceMapScript } }; - InstanceScript* GetInstanceScript(InstanceMap* pMap) + InstanceScript* GetInstanceScript(InstanceMap* pMap) const { return new instance_zulgurub_InstanceMapScript(pMap); } |