mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-15 04:32:14 +00:00
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:
@@ -27,9 +27,9 @@
|
||||
/*
|
||||
General message handling stuff
|
||||
*/
|
||||
var/list/comm_message_listeners = list() //We first have to initialize list then we can use it.
|
||||
var/datum/comm_message_listener/global_message_listener = new //May be used by admins
|
||||
var/last_message_id = 0
|
||||
var/global/list/comm_message_listeners = list() //We first have to initialize list then we can use it.
|
||||
var/global/datum/comm_message_listener/global_message_listener = new //May be used by admins
|
||||
var/global/last_message_id = 0
|
||||
|
||||
/proc/get_comm_message_id()
|
||||
last_message_id = last_message_id + 1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
var/warrant_uid = 0
|
||||
var/global/warrant_uid = 0
|
||||
/datum/datacore
|
||||
var/list/warrants = list()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user