Files
vgstation13/code/controllers/subsystem/fast_machinery.dm
EdXbtkOEwGw 35f01132ac Makes everything smooth as a pomf's behind. (#17044)
* Mostly working

* This seems to work

* Better glidesize calculation, implements it on a lot of shit

* ZAS and bump

* Smooth scoot
2018-01-09 09:42:13 -08:00

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()