From 8eb7ca23f4ba35abdf403ec3f1eb413e131c4ee0 Mon Sep 17 00:00:00 2001 From: Siu-Cheong Ng Date: Mon, 26 Sep 2011 08:45:43 +0200 Subject: [PATCH] The Stopwatch now gets hidden properly when the timer exceeds 100 hours or when the player is at max level --- SimpleDing/SimpleDing.lua | 10 +++++----- SimpleDing/SimpleDing.toc | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/SimpleDing/SimpleDing.lua b/SimpleDing/SimpleDing.lua index da4efad..405cfc5 100644 --- a/SimpleDing/SimpleDing.lua +++ b/SimpleDing/SimpleDing.lua @@ -3,7 +3,7 @@ --- Created: 2011.02.25 --- --- License: Public Domain --- --------------------------------------- ---- SimpleDing v0.24 [2011.09.26] --- +--- SimpleDing v0.26 [2011.09.26] --- --- Ace3 r1032 [2011.06.29] --- --------------------------------------- -- http://wow.curse.com/downloads/wow-addons/details/simpleding.aspx @@ -14,7 +14,7 @@ local SD = SimpleDing local ACR = LibStub("AceConfigRegistry-3.0") local LDB = LibStub("LibDataBroker-1.1") -local VERSION = 0.24 +local VERSION = 0.26 local gsub, time = gsub, time local GetGuildRosterInfo = GetGuildRosterInfo @@ -203,7 +203,7 @@ function SD:TIME_PLAYED_MSG(event, ...) end -- temporarily pause Stopwatch - if profile.Stopwatch and isStopwatch then + if profile.Stopwatch and playerLevel < 85 and TPM_current < MAX_TIMER_SEC then Stopwatch_Pause() self:ScheduleTimer(function() StopwatchTicker.timer = TPM_current + AddedTime() @@ -212,9 +212,9 @@ function SD:TIME_PLAYED_MSG(event, ...) end else if profile.Stopwatch then - if isStopwatch then + if playerLevel < 85 and TPM_current < MAX_TIMER_SEC then -- currentTime var isn't updated yet - StopwatchTicker.timer = TPM_current + AddedTime() + StopwatchTicker.timer = TPM_current else Stopwatch_Clear() StopwatchFrame:Hide() diff --git a/SimpleDing/SimpleDing.toc b/SimpleDing/SimpleDing.toc index 9945adc..61e22ae 100644 --- a/SimpleDing/SimpleDing.toc +++ b/SimpleDing/SimpleDing.toc @@ -1,6 +1,6 @@ ## Interface: 40200 -## Version: 0.24 -## Title: SimpleDing |cffADFF2Fv0.24|r +## Version: 0.26 +## Title: SimpleDing |cffADFF2Fv0.26|r ## Author: Ketho @ EU-Boulderfist ## Notes: Leveling AddOn ## SavedVariables: SimpleDingDB -- 1.7.9.5