Update 0.5.7
Arne Rantzen [08-05-14 - 17:30]
Update 0.5.7
Forgot to change the GetTST() to global
diff --git a/Clock.lua b/Clock.lua
index 322408a..5bfe066 100644
--- a/Clock.lua
+++ b/Clock.lua
@@ -3,7 +3,7 @@
-------------------------------------------
cl = {}
-cl.VERSION = "0.5.6"
+cl.VERSION = "0.5.7"
cl.SAV_VERSION = 0.552
-------------------------------------------
diff --git a/Clock.txt b/Clock.txt
index 3114919..460a2d6 100644
--- a/Clock.txt
+++ b/Clock.txt
@@ -13,7 +13,7 @@
###################################
## Title: Clock - By |c5175ea@Tyx|r
-## Version 0.5.6
+## Version 0.5.7
## Author: @Tyx
## APIVersion: 100008
## SavedVariables: Clock_Settings
diff --git a/data/time.lua b/data/time.lua
index c21c4fc..4af7f95 100644
--- a/data/time.lua
+++ b/data/time.lua
@@ -85,10 +85,10 @@ end
-- returns table {h,m,s} in 24h format
-- IMPORTANT: Will work as a cross Addon function
------------------
-local function GetTST()
+function GetTST()
local osT = GetTimeStamp()
local tst = tm.GetTST(osT)
- return tm.ChangeDoubletoHMS(tst)
+ return tst
end
------------------