mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 05:27:01 +01:00
Merge pull request #1214 from Krausus/NoRandomHeads
Fixes Random Jobs Including Command and Whitelisted Positions
This commit is contained in:
@@ -127,10 +127,10 @@ var/global/datum/controller/occupations/job_master
|
||||
if(istype(job, GetJob("Civilian"))) // We don't want to give him assistant, that's boring!
|
||||
continue
|
||||
|
||||
if(job in command_positions) //If you want a command position, select it!
|
||||
if(job.title in command_positions) //If you want a command position, select it!
|
||||
continue
|
||||
|
||||
if(job in whitelisted_positions) // No random whitelisted job, sorry!
|
||||
if(job.title in whitelisted_positions) // No random whitelisted job, sorry!
|
||||
continue
|
||||
|
||||
if(jobban_isbanned(player, job.title))
|
||||
|
||||
Reference in New Issue
Block a user