From 34565795e86afe102c46d840e34844447c465521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Sun, 16 Jan 2005 16:10:06 +0000 Subject: [PATCH] Slowed down actor movement a bit. svn-id: r16571 --- saga/actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saga/actor.cpp b/saga/actor.cpp index 3d9b681bb9a..b8b4c15f8d5 100644 --- a/saga/actor.cpp +++ b/saga/actor.cpp @@ -960,7 +960,7 @@ int Actor::direct(int msec) { // FIXME: HACK. This should be turned into cycle event. _lastTickMsec += msec; - if (_lastTickMsec > ticksToMSec(2)) { // fixme + if (_lastTickMsec > 1000 / 15) { // fixme _lastTickMsec = 0; //process actions handleActions(msec, false);