Progress on DMDocs. PRing progress so far so there's not one mega PR
later with 1500 affected files.

I want my goddamn highlight text on what all these goddamn procs goddamn
do goddamnit. >:(

No actual code change anywhere in this PR, only comments.

---------

Signed-off-by: Batrachophreno <Batrochophreno@gmail.com>
This commit is contained in:
Batrachophreno
2025-08-09 12:22:56 +00:00
committed by GitHub
parent a840bd1cb1
commit c2f054fd81
88 changed files with 1574 additions and 879 deletions
+6 -3
View File
@@ -3,9 +3,12 @@
/datum/alarm_handler
var/category = ""
var/list/datum/alarm/alarms = new // All alarms, to handle cases when an origin has been deleted with one or more active alarms
var/list/datum/alarm/alarms_assoc = new // Associative list of alarms, to efficiently acquire them based on origin.
var/list/listeners = new // A list of all objects interested in alarm changes.
// All alarms, to handle cases when an origin has been deleted with one or more active alarms
var/list/datum/alarm/alarms = new
// Associative list of alarms, to efficiently acquire them based on origin.
var/list/datum/alarm/alarms_assoc = new
// A list of all objects interested in alarm changes.
var/list/listeners = new
/datum/alarm_handler/process()
for(var/datum/alarm/A in alarms)