mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-20 04:34:32 +01:00
Merge pull request #10731 from VOREStation/Fixes/10728
Probably fixes #10728
This commit is contained in:
committed by
Chompstation Bot
parent
968067d0e7
commit
59239bb51b
@@ -84,8 +84,13 @@
|
||||
|
||||
//returns the ETA in minutes
|
||||
/datum/shuttle/autodock/ferry/supply/proc/eta_minutes()
|
||||
return round((arrive_time - world.time) / (1 MINUTE), 1) // Floor, so it's an actual timer
|
||||
return round((arrive_time - world.time) / (1 MINUTE)) // Floor, so it's an actual timer
|
||||
|
||||
// returns the ETA in seconds
|
||||
/datum/shuttle/autodock/ferry/supply/proc/eta_seconds()
|
||||
return round((arrive_time - world.time) / (1 SECOND)) // Floor, so it's an actual timer
|
||||
|
||||
//returns the ETA in deciseconds
|
||||
/datum/shuttle/autodock/ferry/supply/proc/eta_deciseconds()
|
||||
return round(arrive_time - world.time)
|
||||
|
||||
Reference in New Issue
Block a user