From b968b36979b0445b71bb344ceb61498fd044de78 Mon Sep 17 00:00:00 2001 From: DiSlord Date: Fri, 9 Jan 2009 19:28:27 +0300 Subject: [PATCH] [7058] Add 669 summon type Fix typo in mangosd.conf (by SergiK_KilleR) Signed-off-by: DiSlord --- src/game/SharedDefines.h | 1 + src/game/SpellEffects.cpp | 1 + src/mangosd/mangosd.conf.dist.in | 4 ++-- src/shared/revision_nr.h | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/game/SharedDefines.h b/src/game/SharedDefines.h index c39b751fa..1fdf67964 100644 --- a/src/game/SharedDefines.h +++ b/src/game/SharedDefines.h @@ -2076,6 +2076,7 @@ enum SummonType SUMMON_TYPE_UNKNOWN5 = 409, SUMMON_TYPE_UNKNOWN2 = 427, SUMMON_TYPE_POSESSED2 = 428, + SUMMON_TYPE_FORCE_OF_NATURE = 669, SUMMON_TYPE_GUARDIAN2 = 1161 }; diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 8625da213..35d0e79c4 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -3139,6 +3139,7 @@ void Spell::EffectSummonType(uint32 i) case SUMMON_TYPE_GUARDIAN: case SUMMON_TYPE_POSESSED: case SUMMON_TYPE_POSESSED2: + case SUMMON_TYPE_FORCE_OF_NATURE: case SUMMON_TYPE_GUARDIAN2: EffectSummonGuardian(i); break; diff --git a/src/mangosd/mangosd.conf.dist.in b/src/mangosd/mangosd.conf.dist.in index fe3f54847..c0f099640 100644 --- a/src/mangosd/mangosd.conf.dist.in +++ b/src/mangosd/mangosd.conf.dist.in @@ -346,9 +346,9 @@ LogColors = "" # # Expansion # Allow server use content from expansion -# 2 - check expansion 2 maps existence, and if client support expansion 2 and account have +# Default: 2 - check expansion 2 maps existence, and if client support expansion 2 and account have # expansion 2 setting then allow visit expansion 2 maps, allow create new class character) -# Default: 1 - check expansion 1 maps existence, and if client support expansion 1 and account have +# 1 - check expansion 1 maps existence, and if client support expansion 1 and account have # expansion 1 setting then allow visit expansion 1 maps, allow create new races character) # 0 - not check expansion maps existence, not allow wisit its, not allow create new race or new class # characters, ignore account expansion setting) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 790abfa28..9a302fffa 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 "7057" + #define REVISION_NR "7058" #endif // __REVISION_NR_H__