Skip to content

Commit

Permalink
bugfix: blacklist check logic issue preventing spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Sep 11, 2024
1 parent eb3d350 commit c9ee220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ SUBSYSTEM_DEF(jobs)
return 0
if(!job.character_old_enough(player.client))
return 0
if(!job.species_in_blacklist(player.client))
if(job.species_in_blacklist(player.client))
return 0

var/position_limit = job.total_positions
Expand Down

0 comments on commit c9ee220

Please sign in to comment.