fix: cast ET to UTC

This commit is contained in:
insects 2025-03-11 15:21:02 +01:00
parent 901bc36f09
commit 3ddbc2d4b1

View file

@ -9,7 +9,7 @@ class Clock
def self.to_eorzea_time(earth_time)
et_ts = earth_time.to_i
new_ts = et_ts.abs * EARTH_TO_EORZEA
Time.at(new_ts)
Time.at(new_ts.floor).utc
end
def self.to_earth_time(ez_time)