From a9fc6e13e126dcb18d983890f30a90e0b30c8f9d Mon Sep 17 00:00:00 2001
From: Mircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Date: Tue, 22 May 2012 18:10:03 +0300
Subject: [PATCH] Try another origin, which I think is more correct but does
 the same thing...

---
 qcsrc/server/t_plats.qc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qcsrc/server/t_plats.qc b/qcsrc/server/t_plats.qc
index 805f690ec..3e8d077af 100644
--- a/qcsrc/server/t_plats.qc
+++ b/qcsrc/server/t_plats.qc
@@ -269,7 +269,7 @@ void train_wait()
 		entity targ;
 		vector org;
 		targ = find(world, targetname, self.target);
-		org = normalize(targ.origin - (self.origin - self.mins));
+		org = normalize(targ.origin);
 		SUB_CalcAngleMove(org, TSPEED_TIME, self.ltime - time + self.wait, train_wait);
 		self.train_wait_turning = TRUE;
 		return;
-- 
2.39.5