From bf699ac9e6a7e5f0d1180d5af8be11304da21e6b Mon Sep 17 00:00:00 2001 From: kachnov Date: Thu, 29 Mar 2018 06:01:03 -0400 Subject: [PATCH 1/2] increases MAX_THROWING_DIST (#36702) * initial commit * refactor * oh that went first --- code/controllers/subsystem/throwing.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/throwing.dm b/code/controllers/subsystem/throwing.dm index a080f1a159..bfb7099ed2 100644 --- a/code/controllers/subsystem/throwing.dm +++ b/code/controllers/subsystem/throwing.dm @@ -1,4 +1,4 @@ -#define MAX_THROWING_DIST 512 // 2 z-levels on default width +#define MAX_THROWING_DIST 1280 // 5 z-levels on default width #define MAX_TICKS_TO_MAKE_UP 3 //how many missed ticks will we attempt to make up for this run. SUBSYSTEM_DEF(throwing) @@ -107,7 +107,7 @@ SUBSYSTEM_DEF(throwing) return dist_travelled++ - + if (dist_travelled > MAX_THROWING_DIST) finalize() return