aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-05 Core/Spells: Fix Divine Shield and Ice Block casted in CycloneVincent-Michael
2012-08-05Core/Spells: Remove no longer needed hack to Apply Enchanted BridleNay
2012-08-04Merge pull request #7255 from Vincent-Michael/summonVehicleNay
Core/Spells: Fix some summon vehicle spells with basepoint 1
2012-08-04Merge pull request #7273 from Faq/Debuff_0Nay
Core/Spells: Wrath of the Plaguebringer should be a debuff. thnx Tibbi
2012-08-04Merge pull request #7283 from Vincent-Michael/disableCommandNay
Core/Commands: Some fixes for disable command
2012-08-05Core/Commands:Vincent-Michael
* Add remove support for disable command * Add quest disables support * Add check for no existent entry * Fix problems with flags 0 * Fix code style
2012-08-05Core/ByteBuffer: Print stack trace in ByteBufferException::PrintError.LordJZ
2012-08-04Core/Items: Fix compileNay
2012-08-04Tools: Proper default target build outputLordJZ
Ref #7022
2012-08-04Merge pull request #7267 from cyberbrest/pull5Nay
[434][Item] remove support KeyRing Slots and CurrencyTokenSlots.
2012-08-04Merge pull request #7272 from cyberbrest/pull6Nay
[434][PacketIO] castbar.
2012-08-04Core/PacketIO: Enabled some more opcodesSubv
2012-08-04Core/PacketIO: Add some (possible) missing FlushBitsNay
2012-08-04Core/Protocol: Enabled CMSG_BUY_ITEMSubv
2012-08-04Core/Chat: Fix unitialized lang variable (set to LANG_UNIVERSAL) when text ↵Nay
type is emote, afk or dnd
2012-08-04Core/Guilds: Implemented some guild packets, some basic guild functions is ↵kaelima
working, though most are still WIP/TODO
2012-08-04Core/Player: Use DBC data to set the correct amount of hp and mana based on ↵Subv
player level and class
2012-08-04DB/Quest: add quest&seasonal relations for Midsummer Fire FestivalTheSensei
2012-08-04DB/Disables another 39 deprecated questsZxBiohazardZx
2012-08-04DB/Disables: add priest T3 as well, stupid "of Faith" suffix got unnotedZxBiohazardZx
2012-08-04DB/Disables: add T3 deprecated questsZxBiohazardZx
2012-08-04Core/Chat: Send addon prefix in addon messagesNay
Correct structure of some CMSG_MESSAGECHAT_ADDON_x opcodes Fix a compile error in HandleReforgeItemOpcode
2012-08-04DB/Quest: Add questrelations for Honor the Flame questsZxBiohazardZx
Closes #5989
2012-08-04DB/Quest: add dungeonflag for rewardquestsZxBiohazardZx
2012-08-04DB/Disables: another 26 related to BG's deprecated. also fixed an SQL syntax ↵ZxBiohazardZx
error on previous file, wrong file got committed
2012-08-04DB/Disables: disable 35 deprecated CtA questsZxBiohazardZx
2012-08-04DB/Disables: Disable 35 quests named OR containing a - that should not be ↵ZxBiohazardZx
attainable
2012-08-04Core/Spells: Wrath of the Plaguebringer should be a debuff. TibbiFaq
2012-08-04DB/Disables: Disable 21 quests named REUSE or UNUSEDZxBiohazardZx
2012-08-04DB/Disables: Disable 47 placeholders and deprecated questsZxBiohazardZx
2012-08-04DB/Disables: Disable 217 quests that shouldnt be attainable ingame, part of ↵ZxBiohazardZx
a cleanup
2012-08-04[PacketIO] castbar.cyberbrest
2012-08-04Core/Logging: Use config LogsDir to save log files (re-added)joschiwald
2012-08-03Items/Reforge: Partially implemented reforge, still ToDo: Apply real stat ↵Subv
modifiers to the player
2012-08-04Core/PacketIO: Fix and enable SMSG_MESSAGECHATNay
TODO: - Send addon prefix in this packet when language is Addon - Cleanup uses of SMSG_MESSAGECHAT (17 different "handlers" for it is not okay) (long term) - Missing a CMSG_MESSAGECHAT_ADDON_x or two
2012-08-03Whitespace is the root of all evil (version 2)Nay
2012-08-03Core/PacketIO: Correct a value sent in BuildPlayerChat (just for the sake of ↵Nay
being correct, no noticeable changes)
2012-08-03Whitespace is the root of all evilNay
2012-08-03Core/WorldSession: Bypass assigned handler restriction if .debug send opcode ↵Nay
command is used
2012-08-03Merge pull request #7264 from cyberbrest/pull4Nay
[434][Misc]: Fix loading quest locales.
2012-08-03[Item] remove support KeyRing Slots and CurrencyTokenSlots.cyberbrest
ToDo: on rewarding currency items no need create item, just set curency count.
2012-08-03Add missing Copyright headers and some clarification to config files... ¬¬Spp
2012-08-03Merge pull request #7265 from horn/4.3.4Shauren
Core/PacketIO: Enabled CMSG_GUILD_LEAVE, MSG_TABARDVENDOR_ACTIVATE and some petitions releated opcodes
2012-08-03Core/PacketIO: Enabled CMSG_GUILD_LEAVE, MSG_TABARDVENDOR_ACTIVATE and some ↵horn
petitions releated opcodes
2012-08-03[Misc]: Fix loading quest locales.cyberbrest
2012-08-03Fix compile under windowsSpp
2012-08-03Core/Logging: Add Asyncronous logging with Loggers ("What to log") and ↵Spp
Appenders ("Where to log") system. Will allow to select to full log some parts of core while others are not even logged. - Logging System is asyncronous to improve performance. - Each msg and Logger has a Log Type and Log Level assigned. Each msg is assigned the Logger of same Log Type or "root" Logger is selected if there is no Logger configured for the given Log Type - Loggers have a list of Appenders to send the msg to. The Msg in the Logger is not sent to Appenders if the msg LogLevel is lower than Logger LogLevel. - There are three (at the moment) types of Appenders: Console, File or DB (this is WIP, not working ATM). Msg is not written to the resource if msg LogLevel is lower than Appender LogLevel. - Appender and Console Log levels can be changed while server is active with command '.set loglevel (a/l) name level' Explanation of use with Sample config: Appender.Console.Type=1 (1 = Console) Appender.Console.Level=2 (2 = Debug) Appender.Server.Type=2 (2 = File) Appender.Server.Level=3 (3 = Info) Appender.Server.File=Server.log Appender.SQL.Type=2 (2 = File) Appender.SQL.Level=1 (1 = Trace) Appender.SQL.File=sql.log Appenders=Console Server (NOTE: SQL has not been included here... that will make core ignore the config for "SQL" as it's not in this list) Logger.root.Type=0 (0 = Default - if it's not created by config, server will create it with LogLevel = DISABLED) Logger.root.Level=5 (5 = Error) Logger.root.Appenders=Console Logger.SQL.Type=26 (26 = SQL) Logger.SQL.Level=3 (2 = Debug) Logger.SQL.Appenders=Console Server SQL Logger.SomeRandomName.Type=24 (24 = Guild) Logger.SomeRandomName.Level=5 (5 = Error) Loggers=root SQL SomeRandomName * At loading Appender SQL will be ignored, as it's not present on "Appenders" * sLog->outDebug(LOG_FILTER_GUILD, "Some log msg related to Guilds") - Msg is sent to Logger of Type LOG_FILTER_GUILD (24). Logger with name SomeRandomName is found but it's LogLevel = 5 and Msg LogLevel=2... Msg is not logged * sLog->outError(LOG_FILTER_GUILD, "Some error log msg related to Guilds") - Msg is sent to Logger of Type LOG_FILTER_GUILD (24). Logger with name SomeRandomeName is found with proper LogLevel but Logger does not have any Appenders assigned to that logger... Msg is not logged * sLog->outDebug(LOG_FILTER_SQL, "Some msg related to SQLs") - Msg is sent to Logger SQL (matches type), as it matches LogLevel the msg is sent to Appenders Console, Server and SQL - Appender Console has lower Log Level: Msg is logged to Console - Appender Server has higher Log Level: Msg is not logged to file - Appender SQL has lower Log Level: Msg is logged to file sql.log * sLog->outDebug(LOG_FILTER_BATTLEGROUND, "Some msg related to Battelgrounds") - Msg is sent to Logger root (Type 0) as no Logger was found with Type LOG_FILTER_BATTLEGROUND (13). As Logger has higher LogLevel msg is not sent to any appender * sLog->outError(LOG_FILTER_BATTLEGROUND, "Some error msg related to Battelgrounds") - Msg is sent to Logger root (Type 0) as no Logger was found with Type LOG_FILTER_BATTLEGROUND (13). Msg has lower LogLevel and is sent to Appender Console - Appender Console has lower LogLevel: Msg is logged to Console
2012-08-03Core/Misc: Fix code style and a typo for recently merged in PRsNay
2012-08-02Merge pull request #7258 from myran2/DisableCommandsNay
Added disable commands.
2012-08-02Merge pull request #7260 from Amit86/patch-4kandera
[Paladin/Spells] Fix Improved concentration aura