aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-12-14Core: Fixed uninitialized variable warningsShauren
--HG-- branch : trunk
2010-12-14Scripts/Icecrown Citadel: Minor adjustments and compile warning fixesShauren
--HG-- branch : trunk
2010-12-14Core/Gameobjects: Fix fishing and looting specific chests which were bugged ↵Liberate
because of revision 044e466d75. Fixes issue #5116. --HG-- branch : trunk
2010-12-14Core: Change HandleEjectPasenger to HandleEjectPassenger (English thank you)click
--HG-- branch : trunk
2010-12-14Core/Gameobjects: Make a chest not lootable when it still has a respawn ↵Liberate
time, to avoid cheating using third-party software. --HG-- branch : trunk
2010-12-14Core: Fix up opcode-mess from previous commit, and move ↵click
CMSG_DECLINE_CHANNEL_INVITE handling to its correct opcode (0x0410) (Please report back any findings of erranous behaviour to the tracker, or into this commit) --HG-- branch : trunk
2010-12-13Core: Add new system for parallelizing client packet processing. Handle ↵click
WorldSession updates in Map::Update() where we are safe to proceed. Patch by Ambal. (And clean up tabs and whitespace while rummaging around in there) Closes issue 5084. --HG-- branch : trunk
2010-12-13Core/Dungeon Finder: Fix a crash in Join when there are no dungeons ↵Spp
available for that group (And probably other random crashes that appear when having DF enabled) Core/Dungeon Finder: Tab2spaces + remove trailing spaces in LFG* files. Notes to self: - assign NULL to a pointer parameter will not change the pointer value outside the scope of the function - deleting a const_iterator can lead to mem corruption --HG-- branch : trunk
2010-12-13Core/Dungeon Finder: Minor optimization in handler codeSpp
Note: LfgDungeonSet and LfgLockStatusMap were being used without using the existing typedef (to avoid including LFGMgr.h). Now those functions use a struct as param that is forward declared so still LFGMgr.h is not needed and redefinition of LfgDungeonSet/LfgLockStatusMap is removed. --HG-- branch : trunk
2010-12-13Core/Dungeon Finder: Return a copy of cached dungeons set (to avoid being ↵Spp
cleared later in code) --HG-- branch : trunk
2010-12-13Core: Fix non-PCH buildclick
--HG-- branch : trunk
2010-12-13Add missing declarations as of recent mergeMachiavelli
--HG-- branch : trunk
2010-12-13Fix possible compile error under linuxMachiavelli
--HG-- branch : trunk
2010-12-13Fix a typo, thanks to sss.nevanMachiavelli
--HG-- branch : trunk
2010-12-13Core/Guild: More signed/unsigned comparison fixes. Should fix guild log loading.Machiavelli
--HG-- branch : trunk
2010-12-13Core/Guilds: Fix logic in bank withdrawal method (unsigned comparison with ↵Machiavelli
signed value). Should fix certain guild bank related bugs. --HG-- branch : trunk
2010-12-13Core/DBLayer: Implement global ExecuteOrAppend methods to DatabaseWorkerPool ↵Machiavelli
for executing queries in a diverse context (transaction or non transaction) - instead of local to Guild.cpp --HG-- branch : trunk
2010-12-13Fix wrong vsprintf parameter added in merge.Machiavelli
--HG-- branch : trunk
2010-12-13MergeMachiavelli
--HG-- branch : trunk
2010-12-13Backed out changeset: 8326a2411148Machiavelli
--HG-- branch : trunk
2010-12-12Fixed line endings in 10623_world_spell_bonus_dataShauren
Scripts/Naxxramas: Fixed a possible crash in instance script --HG-- branch : trunk
2010-12-11Core/ChatHandler: Cleanup in HandleMessagechatOpcode. Now commands are ↵Shocker
parsed and security checks are made in all channels --HG-- branch : trunk
2010-12-11Cleanup: implemented helper methods for manipulating percentage calculation ↵azazel
and used it where appropriate (plus fixed some other warnings). NOTE: Initially I just wanted to fix some warnings, but noticed that there is no common method for percentage calculation and various formulas are used many time in the code making it difficult to read and understand what the code actually does. So, I introduced several template methods for calculating percent values and adding those values to the original base. I replaced all the raw calculations throughout the code where found, but I could have missed something or could have made a mistake. So, please report any strange behaviour after this commit. If you ask me why I did it: for the sake of consistency and exact understanding what code means. If you see CalculatePct method, you clearly understand, that it find the value of x percent of y. And you can easily express, for example, spell behviour "reduces smth by x%" by the means of a method instead of recalling school maths. --HG-- branch : trunk
2010-12-11Core/Spells: Fix mage talent Frost Warding (and a little cleanup on ↵click
CalcAbsorbResist) - patch by DrTenma Fixes issue 2715. Closes issue 3770. --HG-- branch : trunk
2010-12-11Core/ChatHandler: Allow GM/server-commands to be executed through ↵click
whisper-channels - patch by Ramus Closes issue 5006. --HG-- branch : trunk
2010-12-10Core/Dungeon Finder: Fix crash in JoinSpp
(trying to delete a const iterator) Closes issue 5083 --HG-- branch : trunk
2010-12-10Core/RA: Calculate password hash internally instead of sending plaintext ↵Machiavelli
password to mysql. Convert tabs to spaces. --HG-- branch : trunk
2010-12-10Misc: fix CR/LF (my bad, sorry)azazel
--HG-- branch : trunk
2010-12-10Scripts/Quest: implement dummy effects for spells 43882, 50133 and aura ↵azazel
43874 for quests 11396/11399 Bring Down Those Shields (based on code by NoFantasy) --HG-- branch : trunk
2010-12-10Fix buildclick
--HG-- branch : trunk
2010-12-10Core/Worldserver: Remove external dependency to sockets-library after ↵click
RemoteAccess being converted to ACE, and fix one minor hiccup on non-PCH builds --HG-- branch : trunk
2010-12-10Rewrite remote access console using ACEDerex
--HG-- branch : trunk
2010-12-09Core/SmartAI: ACTION_CALL_CASTEDCREATUREORGO can now be used with ↵Rat
GameObjects too --HG-- branch : trunk
2010-12-09Core/Spells: Prevent Mind Sear from damaging the target itself. Patch by ↵leak
PrinceCreed. Fixes issue 2534 --HG-- branch : trunk
2010-12-09Core/Dungeon Finder: Fix incorrect Lfg state after multiple actions.Spp
- Clear state after get out DF system - Fix player not getting reward after finish a random dungeon - Remove OnDisband Hook, it's already handled by OnRemoveMember --HG-- branch : trunk
2010-12-09Core/Dungeon Finder: Fix a crash in JoinSpp
After a random dungeon is expanded to the corresponding dungeons and checked compatible dungeons of players joining. We have no dungeons and no lockmap. This may only happen when a random dungeon is expanded to no dungeon. And this may be impossible to happen Closes issue 5066 --HG-- branch : trunk
2010-12-09Core/Dungeon Finder: Fix a possible crash in rolechecks when not successSpp
--HG-- branch : trunk
2010-12-09Core/Mechanics: cleanup shapeshift form code (by VladimirMangos)azazel
--HG-- branch : trunk
2010-12-09Core/Auras: fix AuraType 138 to not affect ranged haste, and rename to ↵azazel
SPELL_AURA_MOD_MELEE_HASTE (by michalpolko) --HG-- branch : trunk
2010-12-08Core/Dungeon Finder: Some optimizationsSpp
- Reduce core dependencies with LFGMgr - Remove reduntant calculations in RoleCheck code - Remove no longer needed functions - Fix some packet data (Missing 0 when arrays were null) - Add some debug msgs closes issue 5042 --HG-- branch : trunk
2010-12-08Core/Scripts: Fixed possible crashes in instance scripts (Icecrown Citadel ↵Shauren
and Naxxramas) Scripts/Sunwell Plateau: Fixed crash in Kil'jaeden Scripts/Icecrown Citadel: Fixed crash in Blood-Queen Lana'thel Closes issue #5051. Closes issue #5050. Closes issue #5035. --HG-- branch : trunk
2010-12-08Core/Units: Corrected PLAYER_FIELD_BYTES2 invisibility/stealth flags, by ↵Shauren
VladimirMangos --HG-- branch : trunk
2010-12-07Core/SmartAI: some error checks for actionlists, and enabled lists for GOsRat
--HG-- branch : trunk
2010-12-07Core/SmartAI: all actions regarding to TIMED_ACTIONLIST will now use targeting:Rat
you can now 'send' a list of timed actions to any targeted creature if it has SmartAI NOTE: already made script with timed actions should be remade to use self as target --HG-- branch : trunk
2010-12-06Core/Quests: Fixed Unholy Infusion (24749), Blood Infusion (24756) and added ↵Shauren
partial support for Frost Infusion (24757) --HG-- branch : trunk
2010-12-06Core/OutdoorPvP: Fixed a crash that occured on accessing CapturePoints after ↵leak
GO removal --HG-- branch : trunk
2010-12-06Core/Groups: Remove unused (and costly) return value from Group::RemoveInviteMachiavelli
--HG-- branch : trunk
2010-12-06Fix linux compile.Machiavelli
Closes issue #5044 --HG-- branch : trunk
2010-12-06Core/DBLayer: Optimization in transaction code, and prevent a crash and ↵Machiavelli
memleak on shutdown. --HG-- branch : trunk
2010-12-06Core/DBLayer: Simplify template usage for DatabaseWorkerMachiavelli
--HG-- branch : trunk