From aeeafcfdb19f3595eb3d38702cfc64bb47938238 Mon Sep 17 00:00:00 2001 From: Loganbacca Date: Sun, 3 Aug 2014 16:42:14 +1200 Subject: [PATCH] Reversing fix - Allows cargo tugs to reverse their direction if they are not towing anything --- code/modules/vehicles/cargo_train.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 40d5bc43f13..410e2b75372 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -168,7 +168,7 @@ return 0 if(is_train_head()) - if(direction == reverse_direction(dir)) + if(direction == reverse_direction(dir) && tow) return 0 if(Move(get_step(src, direction))) return 1