diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 3c7f6febe30..79c722f023f 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -216,8 +216,9 @@ var/global/list/uneatable = list( step_towards(X,src) else if(istype(X,/mob/living/carbon/human)) var/mob/living/carbon/human/H = X - H << "\red The singularity has you in it's gravitational pull! It's hard to break free!" - H.grav_delay = 15 //No running this time! + if(prob(25)) + H << "\red The singularity has you in it's gravitational pull! It's hard to break free!" + H.grav_delay = 15 //No running this time! if(istype(H.shoes,/obj/item/clothing/shoes/magboots) && !(src.current_size >= 9)) var/obj/item/clothing/shoes/magboots/M = H.shoes if(M.magpulse)