Files
CHOMPStation2/code/game/jobs/access_datum_vr.dm
Unknown a98204aa31 Fixes a runtime with radio.dm
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.
2018-12-09 01:55:46 -05:00

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