mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
* Refactor of the lowpop power recharge system * Let's run it more quietly * Changed comments to be more accurate after the changes * Config now matches * Hysteresis ho!
15 lines
414 B
Plaintext
15 lines
414 B
Plaintext
// When enabled, turns the lowpop system on
|
|
/datum/config_entry/flag/lowpop_measures_enabled
|
|
default = FALSE
|
|
|
|
// The thresholsd for lowpop systems to be enabled/disabled.
|
|
/datum/config_entry/number/lowpop_threshold_disable
|
|
default = 12
|
|
|
|
/datum/config_entry/number/lowpop_threshold_enable
|
|
default = 9
|
|
|
|
// How often the subsystem should fire.
|
|
/datum/config_entry/number/lowpop_subsystem_fire
|
|
default = 5 MINUTES
|