dreamchecker (#8233)

Implements dreamchecker plus fixes all errors
This commit is contained in:
mikomyazaki
2020-02-16 18:42:32 +00:00
committed by GitHub
parent d08b2ab609
commit 6074224d00
122 changed files with 282 additions and 227 deletions

View File

@@ -627,7 +627,7 @@
if (stat == DEAD)
SSfeedback.IncrementSimpleStat("openturf_human_deaths")
/mob/living/carbon/human/bst/fall_impact()
/mob/living/carbon/human/bst/fall_impact(var/damage_mod)
return FALSE
/mob/living/heavy_vehicle/fall_impact(levels_fallen, stopped_early = FALSE, var/damage_mod = 1)

View File

@@ -25,8 +25,7 @@
/turf/simulated/open/Enter(mob/living/carbon/human/mover, atom/oldloc)
if (istype(mover) && isturf(oldloc))
if (mover.Check_Shoegrip(FALSE) && mover.can_fall(below, src))
to_chat(mover, span("notice",
"You are stopped from falling off the edge by \the [mover.shoes] you're wearing!"))
to_chat(mover, span("notice", "You are stopped from falling off the edge by \the [mover.shoes] you're wearing!"))
return FALSE
return ..()