Merge pull request #8531 from Spookerton/spkrtn/sys/global-agenda

updates all bare globals to use /global/ semantics, and all shared members to /static/
This commit is contained in:
Atermonera
2022-04-24 19:56:07 -08:00
committed by GitHub
240 changed files with 787 additions and 775 deletions
+2 -2
View File
@@ -39,7 +39,7 @@
// consider sleeping the AI instead.
var/process_flags = 0 // Where we're processing, see flag defines.
var/list/snapshot = null // A list used in mass-editing of AI datums, holding a snapshot of the 'before' state
var/list/static/fastprocess_stances = list(
var/static/list/fastprocess_stances = list(
STANCE_ALERT,
STANCE_APPROACH,
STANCE_FIGHT,
@@ -50,7 +50,7 @@
STANCE_FLEE,
STANCE_DISABLED
)
var/list/static/noprocess_stances = list(
var/static/list/noprocess_stances = list(
STANCE_SLEEP
)