You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Minecraft 26.1 and later, the time displayed by the HUD {time} Starscript variable (e.g. the Info HUD "Server time" line) does not match the actual day/night cycle.
Root cause: Minecraft 26.1 moved the day/night cycle to data-driven World Clocks; /time and time-of-day now operate on those clocks, while Level#getGameTime() is the world/simulation age and is explicitly unaffected by /time changes (per the 26.1 release notes, time query gametime is independent of World Clock changes).
Utils#getWorldTime() in src/main/java/meteordevelopment/meteorclient/utils/Utils.java still formats the world-age counter as time of day:
Display the HUD time (Info HUD "Server time" / {time}).
Have an operator run /time set day (or /time set night).
The sky, clock items in item frames, and daylight detectors all update immediately — the Meteor HUD time does not change and keeps ticking on its own independent cycle.
All Meteor users on the server observe the same wrong value; comparing with /time query gametime shows the HUD is tracking world age, not the world clock.
Describe the bug
On Minecraft 26.1 and later, the time displayed by the HUD
{time}Starscript variable (e.g. the Info HUD "Server time" line) does not match the actual day/night cycle.Root cause: Minecraft 26.1 moved the day/night cycle to data-driven World Clocks;
/timeand time-of-day now operate on those clocks, whileLevel#getGameTime()is the world/simulation age and is explicitly unaffected by/timechanges (per the 26.1 release notes,time query gametimeis independent of World Clock changes).Utils#getWorldTime()insrc/main/java/meteordevelopment/meteorclient/utils/Utils.javastill formats the world-age counter as time of day:The result looks like a clock but is actually
world age mod 24000, which only matches real time of day by coincidence.Suggested fix — read the dimension's default World Clock (the same clock
/timetargets when no explicit clock is given):I've implemented and tested this in a fork (commit 45740ad: Promptt001@45740ad) and opened PR #6666 with the change.
Steps to reproduce
{time})./time set day(or/time set night)./time query gametimeshows the HUD is tracking world age, not the world clock.Meteor Version
Meteor 26.2 #23
Minecraft Version
MC 26.2
Operating System
Linux
Before submitting a bug report