mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 04:02:31 +00:00
Load ordering was causing the access datums for explorer and pilot access to be defined after radio.dm was loaded, which caused radio.dm to look for access datums that did not exist at the time. This causes the explorer and pilot access datums to load much earlier, fixing the runtime.
13 lines
295 B
Plaintext
13 lines
295 B
Plaintext
//Moved from southern_cross_jobs.vr to fix a runtime
|
|
var/const/access_explorer = 43
|
|
/datum/access/explorer
|
|
id = access_explorer
|
|
desc = "Explorer"
|
|
region = ACCESS_REGION_GENERAL
|
|
|
|
var/const/access_pilot = 67
|
|
/datum/access/pilot
|
|
id = access_pilot
|
|
desc = "Pilot"
|
|
region = ACCESS_REGION_SUPPLY
|