diff --git a/code/_globalvars/lists/reagents_lists.dm b/code/_globalvars/lists/reagents_lists.dm index 6ed324fe5b0..cabf9cc43e1 100644 --- a/code/_globalvars/lists/reagents_lists.dm +++ b/code/_globalvars/lists/reagents_lists.dm @@ -66,4 +66,4 @@ GLOBAL_LIST_INIT(blocked_chems, list("polonium", "initropidril", "concentrated_i "spidereggs", "heartworms", "bacon_grease", "fungalspores", "jagged_crystals", "salmonella", "lavaland_extract", "stable_mutagen", "beer2", - "curare", "gluttonytoxin", "smoke_powder")) + "curare", "gluttonytoxin", "smoke_powder", "stimulative_cling")) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index 088904034d0..ed5bb95bedd 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -44,7 +44,7 @@ var/datum/reagent/R = X if(R.id in required_reagents) continue - if(R in GLOB.blocked_chems) + if(R.id in GLOB.blocked_chems) continue beeagents += R var/bee_amount = round(created_volume * 0.2)