Files
Bubberstation/code/__DEFINES
1e705faa19 [MIRROR] Process procs now properly utilize deltatime when implementing rates, timers and probabilities (#709)
* Process procs now properly utilize deltatime when implementing rates, timers and probabilities (#52981)

* Process procs now properly use deltatime when implementing rates, timers and probabilities

* Review fixes

* Geiger counters cleanup

Made hardsuit geiger code more similar to geiger counter code
Geiger counters are more responsive now

* Moved SS*_DT defines to subsystems.dm

* Rebase fix

* Redefined the SS*_DT defines to use the subsystem wait vars

* Implemented suggested changes by @AnturK

* Commented /datum/proc/process about the deltatime stuff

* Send delta_time as a process parameter instead of the defines

Also DTfied acid_processing

* Dtfied new acid component

* Process procs now properly utilize deltatime when implementing rates, timers and probabilities

Co-authored-by: Donkie <daniel.cf.hultgren@gmail.com>
2020-09-09 08:19:23 +02:00
..
2020-07-06 23:44:02 -04:00
2020-09-07 03:52:59 +02:00
2020-04-05 21:06:45 -03:00
2020-05-25 02:13:37 +08:00
2020-09-09 08:11:59 +02:00
2020-08-27 03:12:11 +02:00
2020-07-28 05:56:57 -04:00
2020-04-20 14:47:22 -03:00
2020-07-19 22:11:44 -03:00
2020-07-07 10:10:12 -04:00
2020-08-25 00:11:20 +02:00
2020-08-29 20:35:09 +01:00
2020-08-14 23:30:16 +02:00
2020-08-19 04:48:14 +02:00
2020-09-09 08:11:59 +02:00
2020-07-29 08:32:30 -04:00

This folder is full of #define statements. They are similar to constants, but must come before any code that references them, and they do not take up memory the way constants do.

The values in this folder are NOT options. They are not for hosts to play with. Some of the values are arbitrary and only need to be different from similar constants; for example, the genetic mutation numbers in genetics.dm mean nothing, but MUST be distinct.

It is wise not to touch them unless you understand what they do, where they're used, and most importantly, how to undo your changes if you screw it up.

  • Sayu