From 09125f312560f52d5db52d7b4188871f172fb7e6 Mon Sep 17 00:00:00 2001
From: Alphas00 <154434082+Alphas00@users.noreply.github.com>
Date: Tue, 2 Apr 2024 20:36:08 +0200
Subject: [PATCH] Small Nibble fix
Nibbe mutation ability now injects the amount specified by the chem_to_add variable
---
GainStation13/code/datums/mutations/fatfang.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/GainStation13/code/datums/mutations/fatfang.dm b/GainStation13/code/datums/mutations/fatfang.dm
index 512690ff..16eba2b3 100644
--- a/GainStation13/code/datums/mutations/fatfang.dm
+++ b/GainStation13/code/datums/mutations/fatfang.dm
@@ -37,7 +37,7 @@
if(!target || !chem_to_add)
return FALSE
- target.reagents.add_reagent(/datum/reagent/consumable/lipoifier, 5)
+ target.reagents.add_reagent(/datum/reagent/consumable/lipoifier, chem_to_add)
target.visible_message("[user] nibbles [target]!","[user] nibbles you!")
return ..()