mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
* Mostly working * This seems to work * Better glidesize calculation, implements it on a lot of shit * ZAS and bump * Smooth scoot
22 lines
515 B
Plaintext
22 lines
515 B
Plaintext
var/datum/subsystem/machinery/fast/SSfast_machinery
|
|
|
|
var/list/fast_machines = list()
|
|
|
|
|
|
/datum/subsystem/machinery/fast
|
|
name = "Fast Machinery"
|
|
wait = SS_WAIT_FAST_MACHINERY
|
|
priority = SS_PRIORITY_FAST_MACHINERY
|
|
display_order = SS_DISPLAY_FAST_MACHINERY
|
|
|
|
|
|
/datum/subsystem/machinery/fast/New()
|
|
NEW_SS_GLOBAL(SSfast_machinery)
|
|
|
|
|
|
/datum/subsystem/machinery/fast/stat_entry(var/msg)
|
|
..("FP:[fast_machines.len]")
|
|
|
|
/datum/subsystem/machinery/fast/get_currenrun()
|
|
return fast_machines.Copy()
|