This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/server/game/Entities/Creature/Creature.cpp b/src/server/game/Entities/Creature/Creature.cpp | |
index 5d62b74..8ee326a 100644 | |
--- a/src/server/game/Entities/Creature/Creature.cpp | |
+++ b/src/server/game/Entities/Creature/Creature.cpp | |
@@ -183,7 +183,8 @@ m_lootRecipient(), m_lootRecipientGroup(0), _skinner(), _pickpocketLootRestore(0 | |
m_respawnDelay(300), m_corpseDelay(60), m_respawnradius(0.0f), m_boundaryCheckTime(2500), m_combatPulseTime(0), m_combatPulseDelay(0), m_reactState(REACT_AGGRESSIVE), | |
m_defaultMovementType(IDLE_MOTION_TYPE), m_spawnId(0), m_equipmentId(0), m_originalEquipmentId(0), m_AlreadyCallAssistance(false), | |
m_AlreadySearchedAssistance(false), m_regenHealth(true), m_AI_locked(false), m_meleeDamageSchoolMask(SPELL_SCHOOL_MASK_NORMAL), | |
-m_originalEntry(0), m_homePosition(), m_transportHomePosition(), m_creatureInfo(NULL), m_creatureData(NULL), m_waypointID(0), m_path_id(0), m_formation(NULL) | |
+m_originalEntry(0), m_homePosition(), m_transportHomePosition(), m_creatureInfo(NULL), m_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[SpecWoW] Core/Custom: Player can join LFG anywhere | |
[SpecWoW] Core/Custom: Implement Auto Learn Spell System | |
[SpecWoW] Core/Custom: Implement Automatic Quest Completer System | |
[SpecWoW] Core/Custom: Add Blizzard Blue Text color on GM Characters! | |
[SpecWoW] Core/Custom: Implement Channel Faction Chat Icons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DB/Object: Add missing Dirt mound spawn | |
DB/Creature: Forlorn SoulAdd missing spawns | |
DB/Conditions: Judgment Day Comes!This optional breadcrumb quest should not be takable if player has already started quest chain it leads to. | |
Build: Added 1.60 Boost version to FindBoost | |
DB/Creature_text: Fix probability inside a groupCloses #16093 | |
Core/Objects: Fix typo in 19cab2c50857045788bd80e202ed661e49ed8bba | |
DB/Event: Add all remaining Feast of Winter Veil spawns in whole Outland and Dalaran | |
Auth/Login: Rename config key usageRelated: 193dd505 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Add missing spawns,misc changes gameobjects/creatures related to Midsummer event | |
SET @CGUID = xxxxxx; -- 168 Required | |
SET @OGUID = xxxxxx; -- 419 Required | |
UPDATE `gameobject` SET `position_x`=-7596.67, `position_y`=-2079.81, `position_z`=125.968, `orientation`=3.20786, `rotation2`=0.999451, `rotation3`=-0.0331301 WHERE `guid`=52517 AND `id`=188021; | |
UPDATE `gameobject` SET `position_x`=-7591.5, `position_y`=-2080.49, `position_z`=126.518 WHERE `guid`=50934 AND `id`=181307; | |
UPDATE `creature` SET `orientation`=3.14884 WHERE `guid`=202758; | |
UPDATE `creature` SET `modelid`=21085 WHERE `guid`=202746; | |
UPDATE `creature` SET `modelid`=21086 WHERE `guid`=202749; | |
UPDATE `creature` SET `modelid`=16436 WHERE `guid`=202748; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -5525,7 +5534,7 @@ bool Player::CanJoinConstantChannelInZone(ChatChannelsEntry const* channel, Area | |
if (channel->flags & CHANNEL_DBC_FLAG_ZONE_DEP && zone->flags & AREA_FLAG_ARENA_INSTANCE) | |
return false; | |
- if ((channel->flags & CHANNEL_DBC_FLAG_CITY_ONLY) && (!(zone->flags & AREA_FLAG_SLAVE_CAPITAL))) | |
+ if ((channel->flags & CHANNEL_DBC_FLAG_CITY_ONLY) && (!(zone->mapid == 0 || zone->mapid == 1 || zone->mapid == 571 || zone->mapid == 530))) | |
return false; | |
if ((channel->flags & CHANNEL_DBC_FLAG_GUILD_REQ) && GetGuildId()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 546767d3ccdeed0fd4f851201bd6e4c4c8fb86c4 Mon Sep 17 00:00:00 2001 | |
From: PaulHellCore <[email protected]> | |
Date: Wed, 8 Jul 2015 15:33:53 +0300 | |
Subject: [PATCH] Core/Spells: Full hp for dismount pet's | |
--- | |
src/server/game/Entities/Pet/Pet.cpp | 10 +++++----- | |
1 file changed, 5 insertions(+), 5 deletions(-) | |
diff --git a/src/server/game/Entities/Pet/Pet.cpp b/src/server/game/Entities/Pet/Pet.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TRUNCATE `spell_group`; | |
TRUNCATE `spell_group_stack_rules`; | |
INSERT INTO `spell_group` (`id`, `spell_id`) VALUES | |
-- Battle Elixirs | |
(1, 2367), | |
(1, 2374), | |
(1, 3160), | |
(1, 3164), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 899905b8891157007bd0a884b87b2abaa2f7a50e Mon Sep 17 00:00:00 2001 | |
From: Demonid <[email protected]> | |
Date: Sat, 21 Mar 2015 10:17:19 -0700 | |
Subject: [PATCH] Core/RBAC: Move RBAC code to namespace rbac | |
--- | |
src/server/game/Accounts/AccountMgr.cpp | 50 ++--- | |
src/server/game/Accounts/AccountMgr.h | 37 ++-- | |
src/server/game/Accounts/RBAC.cpp | 5 + | |
src/server/game/Accounts/RBAC.h | 215 ++++++++++---------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/server/scripts/Northrend/icecrown.cpp b/src/server/scripts/Northrend/icecrown.cpp | |
index 27054b5..ca7afc7 100644 | |
--- a/src/server/scripts/Northrend/icecrown.cpp | |
+++ b/src/server/scripts/Northrend/icecrown.cpp | |
@@ -276,6 +276,149 @@ public: | |
}; | |
/*###### | |
+## npc_squire_danny | |
+######*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/server/game/Entities/Player/Player.cpp b/src/server/game/Entities/Player/Player.cpp | |
index 161fca4..bf408da 100644 | |
--- a/src/server/game/Entities/Player/Player.cpp | |
+++ b/src/server/game/Entities/Player/Player.cpp | |
@@ -5538,6 +5538,10 @@ void Player::RepopAtGraveyard() | |
bool Player::CanJoinConstantChannelInZone(ChatChannelsEntry const* channel, AreaTableEntry const* zone) | |
{ | |
+ // Player can join LFG anywhere | |
+ if (channel->flags & CHANNEL_DBC_FLAG_LFG) |