diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index ff0bcf4bbc0..1e5b714d170 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -636,7 +636,7 @@ to_chat(M, "Your insides suddenly feel a spreading chill!") if(effective_dose >= 5) M.apply_effect(2 * M.species.spice_mod, AGONY, 0) - M.bodytemperature -= rand(1, 5) * spice_mod // Really fucks you up, cause it makes you cold. + M.bodytemperature -= rand(1, 5) * M.species.spice_mod // Really fucks you up, cause it makes you cold. if(prob(5)) M.visible_message("[M] [pick("dry heaves!","coughs!","splutters!")]", pick("You feel like your insides are freezing!", "Your insides feel like they're turning to ice!")) holder.remove_reagent("capsaicin", 5) @@ -682,7 +682,7 @@ to_chat(M, "Your insides feel uncomfortably hot!") if(effective_dose >= 5) M.apply_effect(2 * M.species.spice_mod, AGONY, 0) - M.bodytemperature += rand(1, 5) * spice_mod // Really fucks you up, cause it makes you overheat, too. + M.bodytemperature += rand(1, 5) * M.species.spice_mod // Really fucks you up, cause it makes you overheat, too. if(prob(5)) M.visible_message("[M] [pick("dry heaves!","coughs!","splutters!")]", pick("You feel like your insides are burning!", "You feel like your insides are on fire!", "You feel like your belly is full of lava!")) holder.remove_reagent("frostoil", 5)