diff --git a/modular_citadel/code/datums/status_effects/chems.dm b/modular_citadel/code/datums/status_effects/chems.dm index dc41eed0eb..ab99effa7d 100644 --- a/modular_citadel/code/datums/status_effects/chems.dm +++ b/modular_citadel/code/datums/status_effects/chems.dm @@ -607,7 +607,7 @@ /datum/status_effect/chem/enthrall/proc/owner_resist() var/mob/living/carbon/M = owner - to_chat(owner, "You attempt to fight against against [(owner.lewd?"[enthrallGender]":"[master]")]'s influence!'") + to_chat(owner, "You attempt to fight against [master]'s influence!") //Able to resist checks if (status == "Sleeper" || phase == 0) @@ -657,7 +657,6 @@ if(prob(5)) M.emote("me",1,"squints, shaking their head for a moment.")//shows that you're trying to resist sometimes deltaResist *= 1.5 - to_chat(owner, "You attempt to shake the mental cobwebs from your mind!") //nymphomania if (M.canbearoused && HAS_TRAIT(M, TRAIT_NYMPHO))//I'm okay with this being removed. deltaResist*= 0.5-(((2/200)*M.arousalloss)/1)//more aroused you are, the weaker resistance you can give, the less you are, the more you gain. (+/- 0.5) diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index 9f925226e6..39c53f49ad 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -57,9 +57,10 @@ e.set_up(round((volume/30)*(pH-9)), T, 0, 0) e.start() - if(!ImpureTot == 0) //If impure, v.small emp + if(!ImpureTot == 0) //If impure, v.small emp (0.6 or less) ImpureTot *= volume - empulse(T, volume/10, ImpureTot/10, 1) + var/empVol = CLAMP (volume/10, 0, 15) + empulse(T, empVol, ImpureTot/10, 1) my_atom.reagents.clear_reagents() //just in case return