mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 20:17:15 +01:00
VS: Fix bit for Pilot and lack of config at new
This commit is contained in:
@@ -17,8 +17,9 @@
|
||||
//VOREStation Add
|
||||
/datum/job/intern/New()
|
||||
..()
|
||||
total_positions = config.limit_interns
|
||||
spawn_positions = config.limit_interns
|
||||
if(config)
|
||||
total_positions = config.limit_interns
|
||||
spawn_positions = config.limit_interns
|
||||
//VOREStation Add End
|
||||
|
||||
// VOREStation Add
|
||||
@@ -38,8 +39,9 @@
|
||||
outfit_type = /decl/hierarchy/outfit/job/assistant
|
||||
/datum/job/assistant/New()
|
||||
..()
|
||||
total_positions = config.limit_visitors
|
||||
spawn_positions = config.limit_visitors
|
||||
if(config)
|
||||
total_positions = config.limit_visitors
|
||||
spawn_positions = config.limit_visitors
|
||||
/datum/job/assistant/get_access()
|
||||
if(config.assistant_maint)
|
||||
return list(access_maint_tunnels)
|
||||
|
||||
@@ -44,7 +44,7 @@ var/const/ASSISTANT =(1<<11)
|
||||
var/const/BRIDGE =(1<<12)
|
||||
var/const/CLOWN =(1<<13) //VOREStation Add
|
||||
var/const/MIME =(1<<14) //VOREStation Add
|
||||
var/const/INTERN =(1<<15) //VOREStation Add
|
||||
var/const/INTERN =(1<<16) //VOREStation Add
|
||||
|
||||
var/list/assistant_occupations = list(
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user