aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-01Core/AH: Don't send expired auctions to clientsjackpoz
Fixes #12964
2014-10-01Core/Spells: Added hack for "There and Back Again" quest credit (for ↵Vincent-Michael
alliance-side) (meh, blizzard :/)
2014-09-30Core/Brewfest: Added texts for quest "Bark for the Thunderbrews!" / "Bark ↵Vincent-Michael
for the Barleybrews!"
2014-09-30DB/Brewfest: Convert some brewfest for alliance:Vincent-Michael
- Fix Quest "Bark for the Barleybrews!" (for Alliance-side) - Fix Quest "Bark for the Thunderbrews!" (for Alliance-side)
2014-09-30DB/Brewfest: Convert some brewfest for alliance:Vincent-Michael
- Fix Quest "There and Back Again" (for Alliance-side) - Fix Quest "Now This is Ram Racing... Almost." (for Alliance-side)
2014-09-30Revert "Core/AuctionHouse: Delete expired auctions at startup."jackpoz
This reverts commit a92038feaf440abe797ee4b0344612b6176e43a8 which caused items of expired auctions not being mailed back to the owner and leaving those items in item_instance table. Please refer to the forum for steps to verify the integrity of your database and remove old unneeded rows in item_instance table. Fixes #12699
2014-09-30Core/LootMgr: Fix GCC warningjackpoz
2014-09-30Core/LootMgr: Fix wrong bit fields paddingjackpoz
2014-09-30Core/SAI: Addet new error log for SMART_ACTION_CAST kill credit invalid targetVincent-Michael
2014-09-30DB/Misc: The Green Hills of Stranglethorn (3.3.5)Dr-J
Script replacement of misplaced chapters if player is rewarded for quest which rewards chapter but does not have item and has not turned in quest 338.
2014-09-29Core/Scripts: Fix invalid memory writejackpoz
Fix invalid memory write caused by calling "delete this;" in a base class constructor.
2014-09-29Core/Scripts: fixed memory leak caused by unassigned scripts in dbjoschiwald
2014-09-29DB/Gossips: Added some more assignation to their proper BroadcastTextIDKinzcool
2014-09-29DB/Quest: Fix more locales on 3.3.5aAokromes
2014-09-28DB/Gossips: Added a missing one from 8983fbba531ac732ca48b9b78d85b2858eee67fdKinzcool
2014-09-28DB/Gossips: Localized talents gossips by assigning them to their BroadcastTextIDKinzcool
* Closes #12546
2014-09-28Core/AH: Fix Auction House items not deleted from databasejackpoz
Fix some cases where Auction House items were not deleted from item_instance table of character database, for example if the owner didn't exist anymore or if the owner was the AHBot. Updates #12699 Updates #13232
2014-09-28Core/GameObjects: Fixed uninitialized elevator period valueShauren
2014-09-28WorldServer/Misc: Log possible errors on shutdownjackpoz
Log possible error on shutdown happening when trying to cancel any I/O sync operation in CliThread, refers to #13201
2014-09-28Buildsystem/MSVC: Removed /SAFESEH linker option from x86 debug builds as it ↵Shauren
doesn't make sense in debug builds and interferes with Edit and Continue Closes #13233
2014-09-28Rename 2014_09_28_00_world_conversion.sql to 2014_09_28_00_world.sqlAokromes
2014-09-28DB/Misc: Fix startup errorsAokromes
2014-09-27DB/BroadcastText: Assigned BroadcastTextIDs to some textsKinzcool
2014-09-28SQL: Fix sql import on unixVincent-Michael
2014-09-27Core/LootMgr: Forgot to change this. Found by Vincent MichealMalcrom
2014-09-27DB/Loot Template: If I put the updates sql in the right dir in the first ↵Malcrom
place none of this would be happening...
2014-09-27DB/Loot: Update SQLMalcrom
2014-09-27Core/LootMgr: Update lootMgr to normalize loot_template tablesMalcrom
2014-09-27Merge pull request #13140 from Unholychick/preventfleeingDuarte Duarte
Core/Mechanics: Fix prevent fleeing + fear
2014-09-27DB/SAI: Re-add SAI for Sprinkle that was accidentally deleted at ↵Nyeriah
d672e78a5b7a98f4b58936a0bd1c948028005dc0
2014-09-27Fixed GCC buildShauren
2014-09-27Core/Spells: Fix typoVincent-Michael
2014-09-27SQL: meh, save buttonVincent-Michael
2014-09-27DB/Gameobject: Fix wrong "Brewfest Banner" position in durotarVincent-Michael
2014-09-27Misc/Brewfest: Fix Quest "11407 - Bark for Drohn''s Distillery!" / "11408 ↵Vincent-Michael
-Bark for T''chali''s Voodoo Brewery!"
2014-09-26Core/Misc: Refactor scripts to fix static analysis warningsjackpoz
Last issue to be fixed, fixes #12960
2014-09-26DB/Brewfest: Fix quest start for "Bark for T'chali's Voodoo Brewery!" / ↵Vincent-Michael
"Bark for Drohn's Distillery!" To/Do: Fix quest kill credit
2014-09-26Core/Spells: Always add threat for spells from spell_threat table, not only ↵Shauren
if target was hit. Unsuccessful cast results in 0 threat added instead of the full amount and creating threat list entry for caster. This fixes various exploits with taunt spells bugging out scripts due to taunt immunity/passive state (creatures would immediately evade resetting script state if no entries were present on threat list - entry with no threat is not the same as no entry) Closes #11883
2014-09-26DB/Quest: Fix LimitTime for Quest "Bark for Drohn's Distillery!" / "Bark for ↵Vincent-Michael
T'chali's Voodoo Brewery!" / "Bark for the Barleybrews!" / "Bark for the Thunderbrews!"
2014-09-26Scripts: Fixed compiler warningShauren
2014-09-26Core/Debugging: Extended ASSERT macro to allow passing additional formatted ↵Shauren
string
2014-09-26Scripts/ManaTombs: Nexus-Prince Shaffar rewritten to BossAI/EventMapMitchesD
2014-09-26DB/Creature: Delete incorrectly spawned FelhunterAokromes
2014-09-26Scripts/UtigardePinnacle: Prevent Ymiron from triggering a phase transition ↵Nyeriah
at death ...caused by the health percent multiplers used to check transitions
2014-09-26DB/Quest: Tirion's GambitDr-J
Script for chosen zealots is not perfect as this should surround player/tirion in a circle but cant think of anyway other than every chosen zealot having its own wp and sai. Closes #10474
2014-09-25Scripts/Misc: Make InstanceScript::Initialize() obsoletejackpoz
Move all InstanceScript initialization code from Initialize() to the constructor. InstanceScript::Initialize() is now obsolete, please don't use it anymore. The only reason it's still in the sources is for backward compatibility.
2014-09-25Core/Misc: Refactor scripts to fix static analysis warningsjackpoz
Eighth batch of fixes targeting 80 issues reported by Coverity
2014-09-25Scripts/Icecrown CitadelShauren
* Fixed Deathbringer Saurfang faction * Fixed Coldflame faction
2014-09-25DB/Brewfest: Fix "Ram Master Ray" gossipVincent-Michael
2014-09-25Scripting/Isle of Queldanas: Moved Converted Sentry to SAI.Malcrom
Closes #13121