From 1185188a7e53d63cc779b76e1e8ce39f85627611 Mon Sep 17 00:00:00 2001 From: charlie2025 Date: Mon, 23 Feb 2009 01:16:05 +0300 Subject: [PATCH] [7327] Restore work of meeting stones, and make it work in more correct way. Required correct DB data. Signed-off-by: VladimirMangos --- 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 5f7cf6c4b..818a0061c 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -1172,7 +1172,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 3ccc7e947..43065c048 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 "7326" + #define REVISION_NR "7327" #endif // __REVISION_NR_H__