From 513d5c179c440f44ffd14f9d7c8125038e366c63 Mon Sep 17 00:00:00 2001 From: megamage Date: Sun, 22 Feb 2009 17:48:19 -0600 Subject: [PATCH] [7327] Restore work of meeting stones, and make it work in more correct way. Required correct DB data. Author: charlie2025 --HG-- branch : trunk --- src/game/GameObject.cpp | 5 ++++- 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__