aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-06Core/Spells: Fix SPELL_AURA_MOD_POWER_COST_SCHOOL and ↵Shocker
SPELL_AURA_MOD_POWER_COST_SCHOOL_PCT
2013-02-06Fix up previous commit.w1sht0l1v3
2013-02-06DB/Misc: Fixup quest Hot On The Trail (A:24849 H:24851)w1sht0l1v3
2013-02-06Core/Player: Fix a query that was wrongly deleting itemsNay
CHAR_DEL_ITEM_INSTANCE deletes by item guid but in Player::DeleteFromDB the guid being used was player's guid. That means that if player with guid 100 was deleted, the item with guid 100 would also be deleted. This item could or could not belong to the player. Closes #8883 Closes #9136 Thanks to @vlad852 for finding the issue
2013-02-06Add comment to f205613eb5a47c390d0403e3b01a021304406617Gacko
2013-02-05DB/Items: Added Heart-Shaped Box, missing for Love in the Air eventKinzcool
Closes: #9130
2013-02-06Core/Spells: Fixed Molten Core's proc.Warpten
2013-02-05Core/SQL: Explicitly set the auth.account-table to use the INNODB-engine (to ↵click
allow foreign keys and transactions) If you have an OLD database (auth), and RBAC SQL-alterations, make SURE that it's InnoDB, otherwise run this (it can be run multiple times anyway) (The only change added is to alter the table to explicitly be an InnoDB-table)
2013-02-05DB/Disable: Ignore LOS for Krakles ThermometerGacko
Closes #5560
2013-02-05Core/Spell: Consider disables for LOS checkGacko
2013-02-05Core/Remote: Adjust logentries to accomodate separation of info- vs ↵click
debug-output, using Info-level as default unless it's REAL debugoutput
2013-02-05Warning fixSpp
2013-02-05Merge branch 'master' into 4.3.4Spp
Conflicts: src/server/scripts/Kalimdor/zone_durotar.cpp
2013-02-05Typo fixSpp
2013-02-05Core/RBAC: Allow custom security levels for commands. (Before this change ↵Spp
any command with seclevel > 3 had the same permissions than player commands) Note: This is still a workaround till command system is moved to RBAC
2013-02-04Implemented use of `graveyard_orientation` - You can test it by clicking on ↵Subv
"Return to Graveyard" button
2013-02-04DB/Creature: Updated Unseen templateKinzcool
2013-02-04Core/AI: Removed Scripted_NoMovementAI which has become obsolete. Use ↵m7nu3l
ScriptedAI::SetCombatMovement(false); to get the same functionality.
2013-02-04DB/Misc: Fix achievement Flirt With Disaster.w1sht0l1v3
2013-02-04Fix merge fail (fucking saving button -.-)Vincent_Michael
2013-02-04Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4Vincent_Michael
Conflicts: sql/base/auth_database.sql sql/base/characters_database.sql src/server/game/Entities/Player/Player.cpp src/server/game/Handlers/LFGHandler.cpp src/server/game/Server/WorldSession.cpp src/server/game/Server/WorldSession.h src/server/game/Server/WorldSocket.cpp src/server/game/World/World.cpp src/server/scripts/Spells/spell_generic.cpp
2013-02-04DB/Commands: Fix RBAC commands (remove an extra dot)Nay
2013-02-04DB/Characters: Update sql/base/characters_database.sqlNay
2013-02-04DB/Auth: Update sql/base/auth_database.sqlNay
2013-02-04Correction to previous commit (Use proper way to delete from spell_script_names)Spp
2013-02-04Scripts/Player: Add OnMapChanged to PlayerScripts (after map changed)Spp
Core/Dungeon Finder: Use OnMapChanged script to cast/remove Luck of the draw - Also move code to force party update to LfgPlayerScript - Remove some obsolete Lfg code after recent commits
2013-02-04Rename sql files of 760d62e934f8289cdd9950c04a4dbf588eddd742Gacko
2013-02-04Merge pull request #9099 from Bezo/mutenewAokromes
Add Mute reason and mute by to the db so you can get this info from the ...
2013-02-04Fix compile without PCHSpp
2013-02-04Core/RBAC: Add SQL to remove bad data from account_access, otherwise other ↵Spp
sqls will fail due to use of FOREIGN KEYS - Also add missing files from previous commit
2013-02-04Core: Implement Role based Access ControlSpp
- This system will give more control of actions an account can perform. System defines: - Permissions to perform some action - Roles: a set of permissions that have some relation - Groups: a set of roles that have some relation Operations: - Grant: Assign and allow - Deny: Assign and do not allow - Revoke: Remove Precedence to know if something can be done: Grant, Deny. That means, if you are granted some action by a role but you have denied the permission, the action can not be done. Some Rules: - Groups can only have roles - Roles can only have permissions - An account can be assigned granted and denied roles. Permissions inherited from roles are granted if roles is granted and denied if roles is denied - An account can be assigned granted and denied permissions - An account can have multiple groups, roles and permissions - An account can not have same role granted and denied at same time - An acconnt can not have same permission granted and denied at same time - Id 0 can not be used to define a group, role or permission Added some permissions as a sample of use (Instant Logout, Skip Queue, Join BGs, Join DF) and some permissions as a workaround to commands till command system is modified to use RBAC
2013-02-03Merge pull request #9142 from m7nu3l/patch-4Manuel Carrasco
Core/MovementGenerator: Now MovementInform event is called at the truly end of Finalize function. Thanks Trista
2013-02-04Core/MovementGenerator: Now MovementInform event is called at the truly end ↵m7nu3l
of Finalize function. Thanks to Trista.
2013-02-04Core/Dungeon Finder: Declare some functions private as those are not used ↵Spp
outside LFGMgr. Also do not expose LFGDungeonData outside LFGMgr
2013-02-04Core/Dungeon Finder: Corrections to previous commitSpp
- player::inRandomLfgDungeon was supposed to return if current player map and difficulty are the ones player applied for
2013-02-03Renamed `game_graveyard_orientation` to `graveyard_orientation`Kinzcool
2013-02-03Created table for a future (soon) use of graveyards orientations -- work ↵Kinzcool
based on WorldSafeLocs.dbc
2013-02-04Core/Dungeon Finder: Use lfg namespace to encapsulate all LFG classes, ↵Spp
structs and enums
2013-02-04Core/Dungeon Finder: Simplify Spell Luck of the draw codeSpp
Core/Dungeon Finder: Partial recode of "group list" using existing Lfg functions
2013-02-04DB/Misc: Add full script for Pilfering Perfume (A:24656 H:24541)w1sht0l1v3
Closes #5205
2013-02-03DB/Creature Text: Corrected some texts & type fails -- more to come; Soon (TM)Kinzcool
2013-02-04DB/Misc: Add full script for Something Stinks (A:24655 H:24536)w1sht0l1v3
Rename an sql file.
2013-02-03Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4Vincent_Michael
Conflicts: src/server/game/Entities/Object/Object.cpp src/server/game/Movement/Spline/MovementPacketBuilder.cpp
2013-02-03Merge pull request #9131 from m7nu3l/patch-3Manuel Carrasco
Core/AI: Implemented functionality for _isCombatMovementAllowed in ScriptedAI, only when AttackStart is called.
2013-02-03Core/AI: Implemented functionality for _isCombatMovementAllowed in ↵m7nu3l
ScriptedAI, only when AttackStart is called.
2013-02-03Merge pull request #9134 from Krogonos/masterShauren
Inconsistent file naming convention
2013-02-03Fixed a few file names to improve searching.Krogonos
Signed-off-by: Krogonos <bryan.mayer26@yahoo.com>
2013-02-03Core/Loot: Items in generated loot will now be split in multiple stacks if ↵Shauren
their count exceeds max stack size defined in item_template
2013-02-03Fix engrish in docGacko
2013-02-03Core/Debugging: Made WheatyExceptionReport::_GetWindowsVersion code more ↵Shauren
readable and added check for Windows Server 2012