Fix “noon” and “midnight” disappearing too fast

This commit is contained in:
Wuzzy 2016-12-16 20:44:36 +01:00
parent 0fdecb5afe
commit 0252ceecc1

@ -311,6 +311,7 @@ function orienteering.update_hud_displays(player)
local totalminutes = time * 1440
local minutes = totalminutes % 60
local hours = math.floor((totalminutes - minutes) / 60)
minutes = math.floor(minutes)
local twelve = orienteering.playerhuds[name].twelve
if twelve then
if hours == 12 and minutes == 0 then