This file contains 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/sql/TransmogDisplayVendor/characters.sql b/sql/TransmogDisplayVendor/characters.sql | |
new file mode 100644 | |
index 0000000..b575605 | |
--- /dev/null | |
+++ b/sql/TransmogDisplayVendor/characters.sql | |
@@ -0,0 +1,9 @@ | |
+CREATE TABLE `custom_transmogrification` ( | |
+ `GUID` INT(10) UNSIGNED NOT NULL COMMENT 'Item guidLow', | |
+ `FakeEntry` INT(10) UNSIGNED NOT NULL COMMENT 'Item entry', | |
+ `Owner` INT(10) UNSIGNED NOT NULL COMMENT 'Player guidLow', |
This file contains 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: Updated by: Toba and Baeumchen (maddin) | |
Fixed Error by : SymbolixDEV! | |
Date: Mon, 29 Apr 2013 04:37:58 +0300 | |
Gunship Battle | |
--- | |
src/server/scripts/Northrend/CMakeLists.txt | 1 + | |
1 file changed, 1 insertion(+) | |
diff --git a/src/server/scripts/Northrend/CMakeLists.txt b/src/server/scripts/Northrend/CMakeLists.txt |
This file contains 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
src/server/game/Battlegrounds/Battleground.cpp | |
@@ -624,7 +624,7 @@ inline Player* Battleground::_GetPlayerForTeam(uint32 teamId, BattlegroundPlayer | |
{ | |
uint32 team = itr->second.Team; | |
if (!team) | |
- team = player->GetBGTeam(); | |
+ team = player->GetTeam(); | |
@@ -987,7 +987,6 @@ void Battleground::EndBattleground(uint32 winner) |
This file contains 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/sql/transmogrification/characters_transmogrification.sql b/sql/transmogrification/characters_transmogrification.sql | |
new file mode 100644 | |
index 0000000..8a73e1b | |
--- /dev/null | |
+++ b/sql/transmogrification/characters_transmogrification.sql | |
@@ -0,0 +1,6 @@ | |
+-- BlizzLikeCore Transmogrification | |
+CREATE TABLE IF NOT EXISTS `custom_transmogrification` ( | |
+ `GUID` int(10) unsigned NOT NULL DEFAULT '0', | |
+ `FakeEntry` int(10) unsigned NOT NULL DEFAULT '0', |