mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 03:21:13 +01:00
A large set of ops program fixes + elevator ghost sound fix (#22278)
- bugfix: "Fixed the operations status display screens not showing the elevator status." - bugfix: "Fixed the cargo delivery program not displaying the account that was used to pay for an order with." - bugfix: "Fixed the cargo delivery program not displaying shipped orders regardless of payment status." - bugfix: "Fixed the ghostly ambience on the operations lift and the lift near security." - bugfix: "The operations program now displays the elevator time in seconds instead of minutes, given the minutes would always show 0."
This commit is contained in:
@@ -154,10 +154,10 @@
|
||||
/datum/shuttle/autodock/ferry/supply/proc/idle()
|
||||
return (moving_status == SHUTTLE_IDLE)
|
||||
|
||||
//returns the ETA in minutes
|
||||
/datum/shuttle/autodock/ferry/supply/proc/eta_minutes()
|
||||
//returns the ETA in seconds
|
||||
/datum/shuttle/autodock/ferry/supply/proc/eta_seconds()
|
||||
var/ticksleft = arrive_time - world.time
|
||||
return round(ticksleft/600,1)
|
||||
return round(ticksleft/10,1)
|
||||
|
||||
/**************************
|
||||
Elevator Animations
|
||||
|
||||
Reference in New Issue
Block a user