From ff346e2544b3fdcb90ac68c144d2646e2d5aacee Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 6 Sep 2021 17:36:55 -0400 Subject: [PATCH] Fix disposal eject speed (#61255) Disposal outlets no longer constantly shoot you out at an incredibly dangerous speed, and no longer deal a base 35 damage + guaranteed dislocation/likely hairline fracture when you hit a wall or other person. Instead, they're back to the old 10 brute damage they were at last year, though you can still multitool/emag them to make them shoot out things faster.... --- code/modules/recycling/disposal/outlet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal/outlet.dm b/code/modules/recycling/disposal/outlet.dm index 07d78acdaf7..f7ec46937fa 100644 --- a/code/modules/recycling/disposal/outlet.dm +++ b/code/modules/recycling/disposal/outlet.dm @@ -57,7 +57,7 @@ if(!H) return - pipe_eject(H, dir, TRUE, target, eject_range, throw_range) + pipe_eject(H, dir, TRUE, target, eject_range, eject_speed) H.vent_gas(loc) qdel(H)