fix: cast ET to UTC
This commit is contained in:
parent
901bc36f09
commit
3ddbc2d4b1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue