aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-17Core/Player rewritten duel CD reset systemShinDarth
2015-10-17DB/Creature: Fix spawnMask for Spire FrostwyrmKillyana
2015-10-16DB/SAI: Dalaran Mages - Add EmotescriptsRushor
2015-10-16DB/Misc: Updates for Argent Tournament QuestsDr-J
* add visual for The Light's Mercy * On Agro text for Mistcaller Yngcar * Correct Defend spell for Boneguard Lieutenant Thanks to @killyana for updates to script for the Light's Mercy
2015-10-16Update CONTRIBUTING.mdAokromes
2015-10-16Update README.mdAokromes
2015-10-16DB/Misc: More AQ40 fixesAokromes
By Malcrom.
2015-10-16Merge pull request #15716 from ShinDarth/bg-expCarbenium
Core/Misc split Rate.XP.Kill and Rate.XP.BattlegroundKill settings
2015-10-16Core/Misc split Rate.XP.Kill and Rate.XP.BattlegroundKill settingsShinDarth
2015-10-15DB/Creature: AQ20 Full respawn and waypointsAokromes
By Malcrom
2015-10-15DB/Quest: The Nightmare ManifestsKillyana
Fix some issues: InhabitType, Hover during the combat, and Eranikus will no longer be attackable before the phase 2
2015-10-15DB/Item: Meteorite Crystal TrinketKillyana
By @treak Closes #8669
2015-10-15DB/Creature: Fix spawns/pathing in AQ40Killyana
By malcrom
2015-10-14Core/Auras: Fixed auras limited to a single target not being removed in all ↵pete318
cases as expected * Fixes possible assertion failure in Aura::UnregisterSingleTarget Closes #15696 Ref #15668 Cherry picked (manually) from b808910a89822f741d35d4b90e6c4bcf101cd9ef
2015-10-14DB: Fix up some errors in Vekniss Hive CrawlerKillyana
By Malcrom
2015-10-14DB/Misc: Fix 2 runtime errorsAokromes
By Malcrom
2015-10-14DB/Creature: Pathing for Lava SurgerAokromes
By Malcrom
2015-10-14Update 2015_10_14_00_world.sqlAokromes
2015-10-14DB/Creature: Fix spawns/pathing in AQ40Carbenium
By malcrom
2015-10-13DB/Creature: Reguid for future commitAokromes
By Malcrom.
2015-10-13Merge pull request #15711 from ShinDarth/bg-leaveNaios
Core/BG: Improved Battleground.InvitationType = 2
2015-10-13Core/BG: Improved ↵ShinDarth
https://github.com/TrinityCore/TrinityCore/commit/d7cb84f6cddb56bc818b2bf30d3318d052039540 - Handle case when some players leave or InvitationType changes while running - Add some comments
2015-10-13Core/Pch - Fix non PCH build.pete318
Issue introduced in https://github.com/TrinityCore/TrinityCore/commit/b1032ed6203a5839906fab7137484b0ef8f0e58f
2015-10-12Change many uint32 to ObjectGuid::LowType in line with 6.x changes.pete318
2015-10-12Merge pull request #15676 from ShinDarth/bg2Naios
Core/Battlegrounds: implement even BG teams configuration
2015-10-12Merge pull request #15707 from ShinDarth/pvpstatspete318
Core/BG fix .character changefaction pvpstats victories amount
2015-10-12Core/Battlegrounds: implment even BG teams configurationShinDarth
2015-10-12Core/BG fix .character changefaction pvpstats victories amountShinDarth
2015-10-12Update 2015_10_12_00_world.sqlAokromes
2015-10-12DB/Misc: Fix startup errorsAokromes
2015-10-12DB/Misc: Fix guidAokromes
2015-10-11DB/SAI: Fix teleport to Molten coreAokromes
By Malcrom
2015-10-11Resolve coverity #1023086pete318
Correctly destroy AH pointer and return error to user in unlikely event auctioneer is invalid
2015-10-11DB/Creature: Pathing for Molten CoreAokromes
By Malcrom, closes #15662
2015-10-11DB/Gameobject: Add few missing Molten Core GameobjectsAokromes
By Malcrom
2015-10-11Renamed sqlShauren
2015-10-11Merge pull request #15495 from Treeston/3.3.5-gemperfectionShauren
Core/Spell: Implement "Gem Perfection" (and framework for similar spells in the future)
2015-10-11Gem Perfection implemented:treeston
- Add new DB table `skill_perfect_item_template` that holds information about "perfect" crafts that replace the normal result - Implement this new DB table into core (SkillExtraItems.cpp, SkillExtraItems.h, SpellEffects.cpp) - Add data about perfect crafts to new DB table (2015_09_11_00_world.sql) - Add reload capability to this new table (latch onto skill_extra_item_template to avoid changing command IDs) Random other change because I stumbled across it and it annoyed me: - npc_professions.cpp no longer uses magic numbers for quest IDs and creature IDs.
2015-10-11Merge pull request #15698 from Treeston/3.3.5-loathebShauren
Scripts/Naxxramas: Loatheb follow-up
2015-10-11Scripts/Naxxramas: Loatheb follow-up:treeston
- Fix Deathbloom (for real this time)
2015-10-10Merge pull request #15680 from tkrokli/dk_initiates_creature_sayjoschiwald
Core/Scripts: The Endless Hunger & Death's Challenge, creature text
2015-10-10Merge pull request #15695 from tkrokli/contrib_check_updatesNaios
contrib/script: error text corrections in check_updates.sh
2015-10-10contrib/script: error text corrections in check_updates.shtkrokli
Fix a factual error in the /contrib/check_updates.sh error message text, Best shown in an example from the latest travis build error: ``` $ ./contrib/check_updates.sh auth auth Database Updater check script: Checking database 'auth' for missing filenames in tables... - "sql/updates/2015_10_09_00_auth.sql" is missing in table 'auth'.'updates' Fatal error: The Database Updater is broken for database 'auth due to applied update which are missing in the 'auth'.'updates' table. How to fix: Insert the missing names of sql updates which were applied already to the 'updates' table of the 'auth' base dump ('sql/base/auth_database.sql'). The command "./contrib/check_updates.sh auth auth" exited with 1. ``` Main fix: `\"sql/updates/${file}\"` -> `\"sql/updates/${name}/${file}\"` Before this change, the error message claims that the updated SQL file was placed directly in the `/sql/updates/` directory and not in the subdirectory based on its DB name. All the other changes are improvements in English grammar and more precise description.
2015-10-10Merge pull request #15692 from ShinDarth/instanceMitchesD
Scripts/Commands: enhanced .instance get/setbossstate commands
2015-10-10Core/Scripts: The Endless Hunger & Death's Challenge, creature texttkrokli
This PR solves the following say text issues: In quest ID 12733, Death's Challenge, the creature script npc_death_knight_initiate is supposed to target the player and refer to the player character's name in the following 2 lines from `creature_text`.`entry` 28406: - "You don't stand a chance, $n." (`BroadcastTextId` 29267) - "Remember this day, $n, for it is the day that you will be thoroughly owned." (`BroadcastTextId` 29270) In quest ID 12848, The Endless Hunger, the creature script npc_unworthy_initiate is supposed to target the player and refer to the player character's race in the following 2 lines from `creature_text`.`entry` 29519, 29520, 29565, 29566 and 29567: - "You are hopelessly outmatched, $r." (`BroadcastTextId` 30212) - "Sate your hunger on cold steel, $r!" (`BroadcastTextId` 30214) The untargeted variables $r and $n appear in the say lines because the existing script assigns the text to the player character instead of the creatures. This does not produce any race or name information in /say or chat. This Pull Request closes issue #14700 and replaces PR #15678.
2015-10-10Scripts/Commands: enhanced .instance get/setbossstate commandsShinDarth
2015-10-10DB/Gossip: Innkeeper Boorand PlainswindKillyana
Closes #15672
2015-10-10DB/Locales: Kobold Camp CleanupKillyana
By @DanielMo1603 Closes #15690
2015-10-10Merge pull request #15689 from sirikfoll/FriendOrFowlShauren
Core/Scripts: Friend or Fowl Achievement
2015-10-10Merge branch 'Treeston-3.3.5-loatheb' into 3.3.5Shauren