mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 15:34:35 +00:00
Merge pull request #3271 from VOREStation/aro-copbuff
Reduce chance of cophorizine limb breaks
This commit is contained in:
@@ -544,7 +544,7 @@
|
||||
M.hallucination = max(M.hallucination, 10)
|
||||
|
||||
//One of the levofloxacin side effects is 'spontaneous tendon rupture', which I'll immitate here. 1:1000 chance, so, pretty darn rare.
|
||||
if(ishuman(M) && rand(1,1000) == 1)
|
||||
if(ishuman(M) && rand(1,10000) == 1)
|
||||
var/mob/living/carbon/human/H = M
|
||||
var/obj/item/organ/external/eo = pick(H.organs) //Misleading variable name, 'organs' is only external organs
|
||||
eo.fracture()
|
||||
|
||||
Reference in New Issue
Block a user