aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-12Core/Loot: Enable setting AcquireReason, correct LootMethod definition, fix ↵Epicurus4
structure to match sniffs of retail and correct threashold and reason definitions.
2015-03-11Merge pull request #14343 from DJScias/opcodes1Carbenium
Core/Packets: updated and enabled SMSG_SELL_RESPONSE
2015-03-11Revert "Core/Server: Catch exceptions in int main()"jackpoz
This reverts commit e68ca82d4d039a401d03de145111b0a738bb9dd7. Closes #14329
2015-03-11Core/Packets: updated and enabled SMSG_SELL_RESPONSEDJScias
A typo that slipped in, damnit
2015-03-11Merge pull request #14334 from Naios/static2Carbenium
Core/Game: & Core/Scripts: Fix some issues detected by static analysis.
2015-03-11Core/PacketIO: updated and enabled SMSG_PLAY_MUSICMitchesD
2015-03-12Core: Fix buildVincent-Michael
2015-03-11Core/PacketIO: updated SMSG_ENVIRONMENTALDAMAGELOG and enabled some opcodesMitchesD
2015-03-11Scripts/Spells: Fix some issues detected by static analysis.Naios
* Prefer prefix ++/-- operators for non-primitive types. * Variable 'ownerBonus' is reassigned a value before the old one has been used. * Fix a wrong type of ownerBonus, sometimes it is float sometimes uint32
2015-03-11Core/Game: Fix some issues detected by static analysis.Naios
* Possible inefficient checking for 'list' emptiness. * Variable '_scheduledScripts' is assigned in constructor body. Consider performing initialization in initialization list. * Variable 'Text' is assigned in constructor body. Consider performing initialization in initialization list. * Possible inefficient checking for 'm_loadedScripts' emptiness.
2015-03-11Core/Packets: Fix packet structure for RideTicketCarbenium
2015-03-11Core/Log: Fix some issues detected by static analysis.Naios
* Either inefficient or wrong usage of string::find(). string::compare() will be faster if string::find's result is compared with 0, because it will not scan the whole string. If your intention is to check that there are no findings in the string, you should compare with std::string::npos. * C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast.
2015-03-10Core/PacketIO: Update a few opcode enums to better match TrinityCore naming ↵Epicurus4
conventions.
2015-03-10Merge pull request #14169 from Carbenium/ticket-1Carbenium
Core/Support: Update the support/ticket system to 6.x
2015-03-10Core/Support: Update the support/ticket system to 6.xCarbenium
Core/Mail: fix a logic error introduced in 829e11b6623f967672143d79cd8d31772f54866d
2015-03-10Core/Players: Set holy power decay timer to 20 seconds after leaving combat ↵Shauren
(also added OnCombatExit hook for stuff like this)
2015-03-10Merge pull request #14327 from DJScias/opcode_emoteclientMitchesD
Core/Packets: update & enabled CMSG_EMOTE
2015-03-10Core/Packets: update & enabled CMSG_EMOTEDJScias
Documentation Used: - Thank you @MitchesD for providing some extra information, much appreciated. Core/Packets: Fix CMSG_EMOTE opcode handler Documentation used: - Thanks thumsoul from TC IRC for providing extra information.
2015-03-10Core/PacketIO: updated SMSG_CLEAR_TARGET and enabled some opcodesMitchesD
2015-03-10Core/Enum: Fix typoEpicurus4
2015-03-10Merge pull request #14323 from Carbenium/opcodes-1Carbenium
Core/PacketIO: Sync with WPP
2015-03-10Core/PacketIO: Sync with WPPCarbenium
2015-03-09Merge pull request #14320 from DJScias/opcodesDuarte Duarte
Core/PacketIO: enable CMSG_DESTROY_ITEM, CMSG_INSPECT, SMSG_INSPECT_RESU...
2015-03-10Core/PacketIO: enable CMSG_DESTROY_ITEM, CMSG_INSPECT, SMSG_INSPECT_RESULTDJScias
Documentation used: - Thanks @rocverde for providing sniffs through TC IRC. - Each opcode checked and works positively, feel free to apply and check yourself.
2015-03-09Merge pull request #14319 from DJScias/opcodes2Duarte Duarte
Core/Packets: update & enabled CMSG_SHOWING_CLOAK, CMSG_SHOWING_HELM
2015-03-09Core/Packets: update & enabled CMSG_SHOWING_CLOAK, CMSG_SHOWING_HELMDJScias
Documentation Used: - Thanks @rocverde for providing sniffs through TC IRC. - Thank you very much @MitchesD, @DDuarte, @Carbenium and @Vincent-Michael (+ Trinity as a whole) for the help with my very first opcode structure update.
2015-03-09Core/PacketIO: sync with WPPMitchesD
2015-03-09Fix non pch buildGacko
2015-03-09CMake: Remove unused source referenceleak
2015-03-09Core/Logging: Fixed ObjectGuid::ToString to output full guidShauren
2015-03-09Core/Spells: Fixed level value scaling for spells with scaling class < -1Shauren
Closes #14133
2015-03-08Core/Misc: Cleaned up data truncation warningsShauren
2015-03-08Core/Auras: Fixed applying more than 8 aura effectsShauren
2015-03-08Core/Spells: Implemented SPELLMOD_JUMP_DISTANCEShauren
2015-03-08Core/Auras: Implemented SPELLMOD_EFFECT4 and SPELLMOD_EFFECT5Shauren
2015-03-08Core/DataStores: Fixed a crash happening when TaxiNodes.db2 fails to loadShauren
Closes #14313
2015-03-08Core/Packets: updated structure of CMSG_PLAYED_TIME, SMSG_PLAYED_TIMEMitchesD
2015-03-08Merge pull request #14312 from DJScias/opcodesMitchesD
Core/PacketIO: Update a response & /played opcodes to 6.1.0
2015-03-08Core/Spells: Implemented multiple spell power costsShauren
2015-03-08FindOpenSSL: fix detection of OpenSSL 1.0.2Guillaume Belz
Closes #14284
2015-03-08Core/PacketIO: Update "SMSG_QUEST_QUERY_RESPONSE" & /played opcodes to 6.1.0DJScias
Documentation: - Taken from https://github.com/TrinityCore/WowPacketParser/commit/92a9fe77b0e8365366d7720f206cff03d0045729. - /played opcodes from sniffs provided by @rocverde through TC IRC. Note: opcode handlers for "CMSG_PLAYED_TIME" & "SMSG_PLAYED_TIME" still need a proper structure change. CMSG is using _OLD and both are on _UNHANDLED.
2015-03-08Merge pull request #14309 from Luzifix/opcode-1Duarte Duarte
Core/PacketIO: Update Vendor Opcode to 6.1.0
2015-03-08Core/DataStores: Fixed out of bounds array access during loading ↵Shauren
TaxiNodes.db2 and added ASSERT for TaxiMaskSize for future versions
2015-03-07Core/Auras: Fixed possible crash in Aura::RefreshDuration - Aura::GetCaster ↵Shauren
can return NULL
2015-03-07Core/PacketIO: Update Vendor Opcode to 6.1.0Luzifix
2015-03-07Merge pull request #14306 from DJScias/6.xDuarte Duarte
Core/PacketIO: Update more opcodes for 6.1.0 (3 commits in total)
2015-03-07Core/PacketIO: Update speed change opcodes for 6.1.0DJScias
Documentation used: - Taken from https://github.com/TrinityCore/WowPacketParser/commit/1a96b789726fa786e476e8af53d43f24d73681e6. Note: I only change opcodes.cpp status to what they were before they were all put back to 'STATUS_UNHANDLED' for update 6.1. The ones that were 'UNHANDLED' before I don't change the status of.
2015-03-07Scripts/Arcatraz: Harbinger Skyriss Adds - Remove Unattackable Flag on SpawnRushor
(cherry picked from commit a99d57b0a3e88c86768957bd8d61f8b3b3fada90)
2015-03-07Scripts/The Lich King: Defile should not grow when player grabbed by Val'kyr ↵D4R4
is moves across Closes #14131 (cherry picked from commit ceea37c9e3304ea2b387b7d3f6ea201b43c2615d)
2015-03-07Fixed typo in 1dc60e8717bddab2a6bc39779a53e83c9fa3b339joschiwald