From 635dd52d1a6fc8de2fd12f08d6d2319f415d800f Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Tue, 7 Nov 2023 03:09:54 +0100 Subject: [PATCH] Whoopsie (#23180) --- code/_globalvars/lists/reagents_lists.dm | 2 +- code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/_globalvars/lists/reagents_lists.dm b/code/_globalvars/lists/reagents_lists.dm index 6ed324fe5b07..cabf9cc43e1b 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 088904034d0a..ed5bb95bedd7 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)