Removes xenomicrobes and nanites from the warehouse chem spawn (#6657)

This commit is contained in:
Alberyk
2019-07-06 05:10:18 -03:00
committed by Erki
parent 7c961e880a
commit bd82d45daf
2 changed files with 8 additions and 1 deletions

View File

@@ -73,7 +73,8 @@ STOCK_ITEM_UNCOMMON(mediumcell, 3)
STOCK_ITEM_UNCOMMON(chempack, 5)
var/list/chems = SSchemistry.chemical_reagents.Copy()
var/list/exclusion = list("drink", "reagent", "adminordrazine", "beer2", "azoth", "elixir_life", "liquid_fire", "philosopher_stone", "undead_ichor", "love", "shapesand", "usolve", "sglue", "black_matter", "lightning", "trioxin", "phoron_salt")
var/list/exclusion = list("drink", "reagent", "adminordrazine", "beer2", "azoth", "elixir_life", "liquid_fire", "philosopher_stone", "undead_ichor", "love", "shapesand", "usolve",\
"sglue", "black_matter", "lightning", "trioxin", "phoron_salt", "xenomicrobes", "nanites")
chems -= exclusion
for (var/i in 1 to rand(2, 6))
var/obj/item/weapon/reagent_containers/chem_disp_cartridge/C = new /obj/item/weapon/reagent_containers/chem_disp_cartridge(L)

View File

@@ -0,0 +1,6 @@
author: Alberyk
delete-after: True
changes:
- rscdel: "Removed xenomicrobes and nanites from the warehouse random chemical spawn."