mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-02 04:29:53 +01:00
ed13d94b40
- processing subsystems now declare time as second intervals - adds missing stat tag - MC now respects abstract type for subsystems (even if we don't use it lol)
13 lines
340 B
Plaintext
13 lines
340 B
Plaintext
/**
|
|
* A very fast-ticking subsystem that runs projectiles.
|
|
*/
|
|
PROCESSING_SUBSYSTEM_DEF(projectiles)
|
|
name = "Projectiles"
|
|
wait = (1 / 20) SECONDS
|
|
stat_tag = "P_PROJ"
|
|
priority = FIRE_PRIORITY_PROJECTILES
|
|
subsystem_flags = SS_NO_INIT | SS_KEEP_TIMING
|
|
|
|
/// global projectile speed multiplier
|
|
var/global_projectile_speed_multiplier = 1
|