diff options
author | megamage <none@none> | 2009-02-22 17:48:19 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-22 17:48:19 -0600 |
commit | 513d5c179c440f44ffd14f9d7c8125038e366c63 (patch) | |
tree | c67df921db25d1584dd856d4b209ed1552d1e994 /src | |
parent | dadb46448539dd3ed64f4bc6993329fce38d2978 (diff) |
[7327] Restore work of meeting stones, and make it work in more correct way. Required correct DB data. Author: charlie2025
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/GameObject.cpp | 5 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp index dc04388ef59..abbc3c4bf1c 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -1231,7 +1231,10 @@ void GameObject::Use(Unit* user) if (level < info->meetingstone.minLevel || level > info->meetingstone.maxLevel) return; - spellId = 23598; + if(info->id==194097) + spellId = 61994; // Ritual of Summoning + else + spellId = 59782; // Summoning Stone Effect break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index b43b41874d7..43065c04899 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7325" + #define REVISION_NR "7327" #endif // __REVISION_NR_H__ |