aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-19Scripts/Commands: Convert argument parsing of remaining go command to new ↵Peter Keresztes Schmidt
system (#25284)
2020-08-19Core/PacketIO: Update SMSG_QUESTGIVER_OFFER_REWARD (#25251)NoName
Co-authored-by: Carbenium <carbenium@outlook.com>
2020-08-19Scripts/Commands: Convert argument parsing of honor commands to new systemCarbenium
2020-08-19Core/Warden: Add .debug warden force, allowing you to force specific warden ↵Treeston
checks to be sent
2020-08-18DB/Creature: Remove incorrectly added event from Thule Ravenclawoffl
Ref ad2552d04ae2656f25ede26a90cadf28a931e3bf This event belongs to Ravenclaw Apparition only, also removes permanent SetActive
2020-08-18Scripts/Commands: Convert argument parsing of deserter commands to new ↵Peter Keresztes Schmidt
system (PR #25276)
2020-08-18DB/Quest: Add correct action type to give quest credit for 'Escorting Erland'offl
Closes #25280 Ref eea3cf14017065dbf11deb0aa12f4cd7dd06abd6
2020-08-18DB/SAI: Remove unnecessary SetActive in DK start zoneJildor
Closes #25278
2020-08-18Scripts/Commands: Convert argument parsing of cheat commands to new system ↵Peter Keresztes Schmidt
(PR #25277)
2020-08-18DB/Areatrigger: Add correct teleport positions from world safe locs to more ↵offl
areatriggers Probably last part. 30 areatriggers requires updates (all without VerifiedBuild) but we can't use positions for most of them from WSL since they were changed in Cata. Positions for some of them can be found in 3.x.x sniffs
2020-08-18DB/Locale/esES+esMX quest_greeting_localeCerveciento
Closes #25272
2020-08-18DB/Locale/esES+esMX Texts missing in quests (Part 21)Cerveciento
Closes #25271
2020-08-17[[maybe_unused]] to make CIs happy, 0b13fc1 follow-upTreeston
2020-08-17Scripts/Commands: Revert e18f7aa, re-add .debug asan outofbounds, move ↵Treeston
bodies to #ifdef
2020-08-17Scripts/Commands: Convert argument parsing of most debug commands to new ↵Peter Keresztes Schmidt
system (PR #25260)
2020-08-17Scripts/Commands: Remove .debug asan outofbounds, because having reachable ↵Treeston
code that essentially says __builtin_unreachable in the core is making me twitchy.
2020-08-17Scripts/Commands: Convert argument parsing of ahbot commands (PR #25264)Peter Keresztes Schmidt
2020-08-17Core/Pets: Fix loading pet dataShauren
Closes #25269
2020-08-17Core/ChatCommands: Parse SpellInfo also from enchant, glyph, talent and ↵Peter Keresztes Schmidt
trade links (PR #25270)
2020-08-17Scripts/Commands: Convert argument parsing of bf commands to new systemCarbenium
2020-08-17Core/ChatCommands: Add Variant.get<typename> overload (PR #25267)Peter Keresztes Schmidt
Co-authored-by: Treeston <treeston.mmoc@gmail.com>
2020-08-17make compilers happyTreeston
2020-08-17Core/Spells: Fix summoning warlock pets in case that pet has never been ↵Shauren
summoned before
2020-08-17Core/Spells: Fix summoning SUMMON_PET type petsShauren
Closes #25265
2020-08-17DB/Text: Add correct text to Sylvanas (Lament of the Highborne)illfated
Closes #25262
2020-08-17DB/Areatrigger: Add correct teleport positions from world safe locs to more ↵offl
areatriggers
2020-08-17Core/ChatCommands: Move Trinity::ChatCommands::Variant from boost::variant ↵Treeston
to std::variant (for real this time)
2020-08-17revert 1aeb7a0 and f9e7dbd until I can work around GCC being sillyTreeston
2020-08-17How did this even build in VS???? (don't kill me shauren) (f9e7dbd follow-up)Treeston
2020-08-17Core/ChatCommands: Move Trinity::ChatCommands::Variant from boost::variant ↵Treeston
to std::variant, which means we no longer need visitors
2020-08-17Core/ChatCommands: Add support for std::array-type arguments (#25261)Peter Keresztes Schmidt
2020-08-16DB/Gameobject: Remove gameobjects with negative respawn time from dynamic ↵offl
scaling spawn group
2020-08-16DB/Areatrigger: Add correct teleport positions from world safe locs to some ↵offl
areatriggers
2020-08-16DB/SAI: Remove SMARTCAST_INTERRUPT_PREVIOUS from nearly all scriptsoffl
No longer needed after https://github.com/TrinityCore/TrinityCore/commit/ca25e8d0199730c0976ebc37317e9407aceccc34 Explained in https://github.com/TrinityCore/TrinityCore/issues/24914 Some event types not affected because requires tests, events with No Repeat event flag skipped
2020-08-16DB/Creature: Add missing cosmetic channeled spell in Ahn'kahetoffl
Closes #12024
2020-08-16DB/Locale esES+esMX Texts missing in quets (Part 20)Cerveciento
Closes #25250
2020-08-16Core/Pets: Pet management refactoring (#25191)Shauren
* Core/Pets: Pet management refactoring * Preload basic pet data on character login with async query * Load additional pet data (declined names/auras/spells/cooldowns) using async query after we are sure pet loading will succeed * Remove all select queries related to pet stable/unstable * Remove all silent pet deletions except explicit UI-triggered abandons * Fixed displaying stable master content when current pet is not summoned * Allow to stable/swap unsummoned current pet Closes #3610 Closes #21266
2020-08-16Core/ChatCommands: Do not parse partial strings for numeric paramters (PR ↵Peter Keresztes Schmidt
#25259) Check if integral/floating point type arguments were parsed successfully. std::stoull will happily parse floating point strings until the decimal separator and return the value. Make sure for all parsing methods that we actually parsed the whole token. This allows to use handler arguments like Variant<uint32, float> which will be populated with the right type depending on the token value (e.g "10" vs "10.0").
2020-08-16Core/SAI: Spell casts that cannot be executed because the unit is currently ↵Giacomo Pozzoni
casting another spell will be retried asap with priority over other events (#25238) * Core/SAI: Spell casts that cannot be executed because the unit is currently casting another spell will be retried asap with priority over other events * Core/SAI: Re-sort the events only when needed * Fix some priority reset and wrong mEventSortingRequired handling * Code cleanup. Sort only events loaded from db (not stored events, not timed action list). * Code cleanup. Raise priority of failed casts so they are retried before other spells * Keep priority of the action fails and is rescheduled on next update * Don't try recasting a spell in SMART_ACTION_CAST if there are multiple targets and at least 1 was successful
2020-08-16Core/ChatCommands: Honor exact matches during enum arg parsing (PR #25255)Peter Keresztes Schmidt
2020-08-16Scripts/Commands: Use enum type arg for HandleDebugAnimCommand (PR #25256)Peter Keresztes Schmidt
* Core/Shared: Make Emote enum smart * Scripts/Commands: Use enum type arg for HandleDebugAnimCommand
2020-08-16Core/DB: Move every gameobject that uses the spawntimesecs < 0 hack into the ↵Treeston
legacy spawn group
2020-08-16Core/Warden: Fix for LUA_STR_CHECK (#25247)scizzydo
The check above is what I use to actually get a real result for LUA_STR_CHECK, which when I used variables that would have a string to them it actually fails the check. When checking for items like a function if it exists of course it won't work... In addition, fixing the Unk2 to Unk3 causes people to be able to adjust the address of the check to the address 0x00419210 to make warden perform the FrameScript__Execute to run lua on the client. This seems to be the big request like in https://github.com/TrinityCore/TrinityCore/issues/23035
2020-08-16Core/ChatCommands: Add support for enum type arguments (PR #25242)Peter Keresztes Schmidt
2020-08-15Core/Unit: Make HandleEmoteCommand typesafe (#25249)Peter Keresztes Schmidt
* Scripts/ScarletMonastery: Fix wrong emote during Headless Horseman encounter * Scripts/HoR: Fix wrong emote during escape event * Core/Unit: Make improve type safety of HandleEmoteCommand Change argument type to the expected enum type Emote * Scripts/CoS: Use SetUInt32Value to set UNIT_NPC_EMOTESTATE UNIT_NPC_EMOTESTATE is no flag field
2020-08-15Core/Spells: Mark constructors of Spell/AuraScript handlers as explicit (#25248)Peter Keresztes Schmidt
Mostly to make clang-tidy happier
2020-08-15Core/PacketIO: Update SMSG_QUESTGIVER_QUEST_DETAILS (#25232)Peter Keresztes Schmidt
* Core/PacketIO: Update SMSG_QUESTGIVER_QUEST_DETAILS * Core/PacketIO: Name RewardFactionFlags field of QuestInfo struct
2020-08-15TDB 335.20081 - 2020/08/15TDB335.20081TDB Release
2020-08-15Script/Quest: The Light of Dawn (#25243)Aokromes
remove incorrect check, source: https://www.wowhead.com/spell=53606/the-light-of-dawn Flags Can be used while dead https://www.wowhead.com/quest=12801/the-light-of-dawn#comments:id=1495830 https://www.wowhead.com/quest=12801/the-light-of-dawn#comments:id=374127
2020-08-15DB/Misc: Add correct teleport positions to one areatrigger and some spells ↵offl
from sniffs