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:
Casper3667
2026-04-19 07:28:40 +02:00
committed by GitHub
parent 90ceccb06b
commit deab6b4e99
10 changed files with 35 additions and 23 deletions
+3 -3
View File
@@ -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