Skip to content

Commit

Permalink
Apply Gaxeer's review
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-34 committed Jan 21, 2025
1 parent 158a707 commit 033c3b1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions code/datums/components/religious_tool.dm
Original file line number Diff line number Diff line change
Expand Up @@ -195,16 +195,17 @@
for(var/path in subtypesof(/datum/religion_sect))
var/list/sect = list()
var/datum/religion_sect/not_a_real_instance_rs = path
// BANDASTATION EDIT START - Religion blacklist
if(!not_a_real_instance_rs.obtainable)
continue
// BANDASTATION EDIT END - Religion blacklist
sect["name"] = initial(not_a_real_instance_rs.name)
sect["desc"] = initial(not_a_real_instance_rs.desc)
sect["alignment"] = initial(not_a_real_instance_rs.alignment)
sect["quote"] = initial(not_a_real_instance_rs.quote)
sect["icon"] = initial(not_a_real_instance_rs.tgui_icon)
sect["path"] = path
// BANDASTATION EDIT START - Religion blacklist
if(not_a_real_instance_rs::obtainable)
sects_to_pick += list(sect)
// BANDASTATION EDIT END
sects_to_pick += list(sect)
return sects_to_pick

/**
Expand Down

0 comments on commit 033c3b1

Please sign in to comment.