From 5130c96c194a04e4ffa2eed285f0070e4d62d086 Mon Sep 17 00:00:00 2001 From: StarlitGhost <679547+StarlitGhost@users.noreply.github.com> Date: Tue, 24 May 2022 18:22:48 +0100 Subject: [PATCH 1/2] [gametime] fix //gt route I checked in Selbina and the arrival times are correct. https://cdn.discordapp.com/attachments/484050756169760788/978709336333361222/unknown.png --- addons/gametime/gametime.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/gametime/gametime.lua b/addons/gametime/gametime.lua index 9ea880138a..a62beee803 100644 --- a/addons/gametime/gametime.lua +++ b/addons/gametime/gametime.lua @@ -287,6 +287,7 @@ end windower.register_event('time change', function(new, old) gt.hours = (new / 60):floor() gt.minutes = new % 60 + gt.dectime = timeconvert(gt.hours..':'..gt.minutes) gt.gtt:update(gt) end) From 10e095689295afde806eeab984bcef91ff19a33a Mon Sep 17 00:00:00 2001 From: StarlitGhost <679547+StarlitGhost@users.noreply.github.com> Date: Tue, 24 May 2022 18:38:00 +0100 Subject: [PATCH 2/2] [gametime] bump version, add copyright date 2022 --- addons/gametime/gametime.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/gametime/gametime.lua b/addons/gametime/gametime.lua index a62beee803..6b9d4c2a03 100644 --- a/addons/gametime/gametime.lua +++ b/addons/gametime/gametime.lua @@ -1,4 +1,4 @@ --- Copyright © 2013-2016, Omnys of Valefor +-- Copyright © 2013-2016, 2022, Omnys of Valefor -- All rights reserved. -- Redistribution and use in source and binary forms, with or without @@ -26,7 +26,7 @@ _addon.name = 'gametime' _addon.author = 'Omnys' -_addon.version = '0.6' +_addon.version = '0.7' _addon.commands = {'gametime','gt'} require('chat')