From 72309e46942ffd0b1c16fe7bb25e63bcc039062a Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Sat, 21 Jul 2018 23:17:48 -0400 Subject: [PATCH] protection --- code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index 58160cf9fb4..a5d37cb8b60 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -44,6 +44,8 @@ var/datum/reagent/R = X if(R.id in required_reagents) continue + if(!R.can_synth) + continue beeagents += R var/bee_amount = round(created_volume * 0.2) for(var/i in 1 to bee_amount)