From 88bacd2c5fdb8a10abc9b326383e999955cfde25 Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 13 Sep 2021 06:39:33 -0400 Subject: [PATCH] adds a cap on throwspeed from monstermos to carbons so you probably won't bust your bones open nearly as often --- code/modules/atmospherics/environmental/LINDA_turf_tile.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm index 2acaf2cdbb33..9469bd9121a9 100644 --- a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm +++ b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm @@ -238,6 +238,8 @@ if(throw_target && (get_dir(src, throw_target) & direction)) throw_turf = get_turf(throw_target) var/throw_speed = clamp(round(move_force / 2000), 1, 10) + if(iscarbon(src)) + throw_speed = min(throw_speed, 4) throw_at(throw_turf, move_force / 2000, throw_speed) else step(src, direction)