From 0ce98548258174cfd9a881f22016cb2733d2ab67 Mon Sep 17 00:00:00 2001 From: Phatcat Date: Thu, 7 Jul 2016 20:32:25 +0100 Subject: [PATCH] Breath timer Base duration of breath should be 60 seconds in Vanilla and TBC, not 3 minutes as it was changed to in patch 3.0.2 for Wrath (and how it currently is on cmangos classic) http://wowwiki.wikia.com/wiki/Breath?oldid=335923 http://wowwiki.wikia.com/wiki/Breath It even states in the uncached, current version of the wiki, my last link, which patch it was changed in, and what the duration was prior to that; 60 seconds. TODO: The forsaken racial trait should be changed to reflect this, meaning that undead should have 3 minutes base, regardless of what they had before, as my first link clearly states. --- src/game/WorldHandlers/World.cpp | 2 +- src/mangosd/mangosd.conf.dist.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/WorldHandlers/World.cpp b/src/game/WorldHandlers/World.cpp index 6cca1eeb..b0b3af49 100644 --- a/src/game/WorldHandlers/World.cpp +++ b/src/game/WorldHandlers/World.cpp @@ -714,7 +714,7 @@ void World::LoadConfigSettings(bool reload) setConfig(CONFIG_UINT32_TIMERBAR_FATIGUE_GMLEVEL, "TimerBar.Fatigue.GMLevel", SEC_CONSOLE); setConfig(CONFIG_UINT32_TIMERBAR_FATIGUE_MAX, "TimerBar.Fatigue.Max", 60); setConfig(CONFIG_UINT32_TIMERBAR_BREATH_GMLEVEL, "TimerBar.Breath.GMLevel", SEC_CONSOLE); - setConfig(CONFIG_UINT32_TIMERBAR_BREATH_MAX, "TimerBar.Breath.Max", 180); + setConfig(CONFIG_UINT32_TIMERBAR_BREATH_MAX, "TimerBar.Breath.Max", 60); setConfig(CONFIG_UINT32_TIMERBAR_FIRE_GMLEVEL, "TimerBar.Fire.GMLevel", SEC_CONSOLE); setConfig(CONFIG_UINT32_TIMERBAR_FIRE_MAX, "TimerBar.Fire.Max", 1); diff --git a/src/mangosd/mangosd.conf.dist.in b/src/mangosd/mangosd.conf.dist.in index f88a66f6..93b30435 100644 --- a/src/mangosd/mangosd.conf.dist.in +++ b/src/mangosd/mangosd.conf.dist.in @@ -813,7 +813,7 @@ Guild.EventLogRecordsCount = 100 TimerBar.Fatigue.GMLevel = 4 TimerBar.Fatigue.Max = 60 TimerBar.Breath.GMLevel = 4 -TimerBar.Breath.Max = 180 +TimerBar.Breath.Max = 60 TimerBar.Fire.GMLevel = 4 TimerBar.Fire.Max = 1 MaxPrimaryTradeSkill = 2