mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
fixes space travel bug with superfarting (#34629)
* fixes space travel bug with superfarting * removed needless newlines --------- Co-authored-by: realestestate <>
This commit is contained in:
@@ -227,10 +227,10 @@
|
|||||||
var/iterations = is_unconscious ? 5 : 3
|
var/iterations = is_unconscious ? 5 : 3
|
||||||
for(var/i = 0, i < iterations, i++)
|
for(var/i = 0, i < iterations, i++)
|
||||||
step_away(V,location,15)
|
step_away(V,location,15)
|
||||||
var/turf/T = get_turf(H)
|
var/turf/T = get_turf(H)
|
||||||
if (!T.has_gravity(H))
|
if (!T.has_gravity(H))
|
||||||
to_chat(H, "<span class = 'notice'>The gastrointestinal blast sends you careening through space!</span>")
|
to_chat(H, "<span class = 'notice'>The gastrointestinal blast sends you careening through space!</span>")
|
||||||
H.throw_at(get_edge_target_turf(H, H.dir), 5, 5)
|
H.throw_at(get_edge_target_turf(H, H.dir), 5, 5)
|
||||||
if(is_unconscious)
|
if(is_unconscious)
|
||||||
H.gib()
|
H.gib()
|
||||||
else
|
else
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
if(user.reagents && user.reagents.has_reagent(PAROXETINE))
|
if(user.reagents && user.reagents.has_reagent(PAROXETINE))
|
||||||
to_chat(user, "<span class='numb'>You're too medicated to wanna do that anymore.</span>")
|
to_chat(user, "<span class='numb'>You're too medicated to wanna do that anymore.</span>")
|
||||||
return FALSE
|
return FALSE
|
||||||
|
|
||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
/datum/emote/living/carbon/human/dab/run_emote(mob/user, params, ignore_status = FALSE)
|
/datum/emote/living/carbon/human/dab/run_emote(mob/user, params, ignore_status = FALSE)
|
||||||
|
|||||||
Reference in New Issue
Block a user