aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2015-10-10Rename sqlShauren
2015-10-10Merge branch 'Treeston-3.3.5-heigan' into 3.3.5Shauren
2015-10-10Rename sqlShauren
2015-10-10Merge branch '3.3.5-noth' into 3.3.5Shauren
2015-10-10Rename sqlShauren
2015-10-10Merge pull request #15504 from Treeston/3.3.5-bosscombatpulseShauren
Core/Creature: Add default-disabled periodic zone combat pulse (and have base AI enable it for bosses)
2015-10-10Merge pull request #15501 from Treeston/3.3.5-proximitycombatShauren
Creature/SmartAI: Fix creature aggression behavior
2015-10-10Core/Scripts: Friend or Fowl Achievementsirikfoll
Change AURA_EFFECT_HANDLE_REAL to AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK, the hook needs to be called on every apply/reapply to keep tracking the stack amount.
2015-10-09Scripts/Naxxramas: Bugfixes to the Noth encounter.treeston
- Added missing raid boss emotes - Fixed an issue where Noth would stand idly after blinking if his current target stood still - Fixed some reset edge cases - Prevent Noth from dying during Balcony phase - Fix targeting of 25-man Curse of the Plaguebringer (now has 8 targets, down from 10) - Fix balcony/ground phase durations to be blizzlike - Fix an issue where summoned mobs would sometimes not be aggroed automatically - Get rid of ugly millisecond values in favor of seconds times constant - Moved the chance to yell on kill to the database - Prevent AoE abilities from hitting Noth during the balcony phase - General cleanup of events handling - Generally make @Nayd happy
2015-10-08DB/Gameobject: Fix Gordok Courtyard DoorAokromes
2015-10-08DB/Creature: Anub'ar Warrior pathingKillyana
By @Malcrom
2015-10-08And final change to include table hash in updatespete318
Not actually needed for this change, but it upset travis
2015-10-08Also update character base create for pet_aura commitpete318
2015-10-08Add caster guid to pet_aura table.pete318
This prevents duplicate key and transaction completion fail on pet save, if pet has same aura from two different casters present. This closes (already closed) issue https://github.com/TrinityCore/TrinityCore/issues/10529
2015-10-06DB/Creature: Sheddle Glossgleam EventKillyana
Shiny Shoes
2015-10-06Rooted vehicle movement (#13342 for example)pete318
Corrects issue where certain combinations of actions would cause vehicles (usually cannons/artillary) that should be rooted, to be fully movable
2015-10-06Rename SQL after PR mergeDDuarte
2015-10-06Merge pull request #15654 from ShinDarth/resolvedByDuarte Duarte
Core/Ticket keep always trace of GM who resolves the ticket
2015-10-06Core/Ticket keep always trace of GM who resolves the ticketShinDarth
2015-10-06DB/Creature: Spire FrostwyrmKillyana
Add Spire Frostwyrm spawns and scripts in Icecrown Citadel
2015-10-05DB/Auth: Add missing update 2015_08_21_00_auth.sql to the auth base.Naios
2015-10-05Travis: Add check for update entries not listed in base dumps.Naios
* Will mark the travis build as failed when the database updater is broken.
2015-10-05DB/Creature: Nerub'ar BroodkeeperKillyana
Add visual Web Beam on aggro Fix creature addon for 25 mode Fix InhabitType issue after landing
2015-10-05Core/Updater: fixed host parameter is being ignoredjoschiwald
(cherry picked from commit e51b6601779050837fcc87f27579b86c50446fc3)
2015-10-05CMake: Fix bad generation of "revision_data.h" not including MYSQL_EXECUTABLE.Naios
* was caused through invoking "FindMySQL" after using ${MYSQL_EXECUTABLE}. * better re-run CMake if you are affected by the mysql exe wasn't found issue.
2015-10-05Core/Updater: Fix mysql in path check/search.Naios
2015-10-05Core/Updater: Pipe mysql process output into worldserver logShauren
(cherry picked from commit 2d109b63e2f1d03a961dd58947598f73e4e43ba0)
2015-10-05Merge pull request #15646 from ShinDarth/ticketShauren
Core/Player: implement ResetCoolDownAfterDuel configurable feature
2015-10-05Core/Player: implement ResetCoolDownAfterDuel configurable featureShinDarth
2015-10-05DB/Quest: Fix a typo on CompletionText for Dark StormsKillyana
By @Espionage724 Closes #15652