diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index 8311c5aa..bb12514d 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -2228,6 +2228,14 @@
color = "#5EFF3B" //RGB: 94, 255, 59
race = /datum/species/xeno
mutationtext = "The pain subsides. You feel... very alien compared to your previous self."
+
+/datum/reagent/mutationtoxin/insect
+ name = "Insect Mutation Toxin"
+ id = "insectmutationtoxin"
+ description = "A buggy toxin."
+ color = "#5EFF3B" //RGB: 94, 255, 59
+ race = /datum/species/insect
+ mutationtext = "The pain subsides. You feel... oddly attracted to light."
/datum/reagent/mutationtoxin/ipc
name = "IPC Mutation Toxin"
diff --git a/code/modules/reagents/chemistry/recipes/slime_extracts.dm b/code/modules/reagents/chemistry/recipes/slime_extracts.dm
index 3f3543f7..1a72e0f2 100644
--- a/code/modules/reagents/chemistry/recipes/slime_extracts.dm
+++ b/code/modules/reagents/chemistry/recipes/slime_extracts.dm
@@ -720,11 +720,11 @@
required_other = TRUE
required_container = /obj/item/slime_extract/green
-/datum/chemical_reaction/slime/slimemoth //Mothmen species, you have a strange attraction to... lamp..
- name = "Moth Mutation Toxin"
- id = "mothmuttoxin"
- results = list("mothmutationtoxin" = 1)
- required_reagents = list("ammonia" = 1) //Ammonia, in the recipe /datum/chemical_reaction/moff and the mut /datum/reagent/mutationtoxin/moth already exists in code, THIS ONE IS OPTIONAL AS WELL.
+/datum/chemical_reaction/slime/slimeinsect //insect species, you have a strange attraction to... lamp..
+ name = "Insect Mutation Toxin"
+ id = "insectmuttoxin"
+ results = list("insectmutationtoxin" = 1)
+ required_reagents = list("ammonia" = 1) //Ammonia, used for the mothman chemical reaction so it's more of a reference.
required_other = TRUE
required_container = /obj/item/slime_extract/green