diff options
author | Bertram <bertram@cegetel.net> | 2009-09-22 01:47:26 +0200 |
---|---|---|
committer | Bertram <bertram@cegetel.net> | 2009-09-22 01:47:26 +0200 |
commit | b2dc67e16477f688f369f15574aba8a85cb18a40 (patch) | |
tree | 46d843a28b6ca87a94681ac1bfb79dc40943cee9 /src/being.cpp | |
parent | 129cdf162b2727c8854e0c6b79d2e79906e5dcfb (diff) | |
download | mana-b2dc67e16477f688f369f15574aba8a85cb18a40.tar.gz mana-b2dc67e16477f688f369f15574aba8a85cb18a40.tar.bz2 mana-b2dc67e16477f688f369f15574aba8a85cb18a40.tar.xz mana-b2dc67e16477f688f369f15574aba8a85cb18a40.zip |
Added support for the go-through-walls case with mouse movement on TMWserv.
Also removed an (now) unuseful debug piece of information.
Thanks Kage for reporting this case.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/being.cpp b/src/being.cpp index a1bb7f92..43f0fdef 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -203,9 +203,7 @@ void Being::clearPath() void Being::setPath(const Path &path) { mPath = path; -#ifdef TMWSERV_SUPPORT - std::cout << this << " New path: " << path << std::endl; -#else +#ifdef EATHENA_SUPPORT if (mAction != WALK && mAction != DEAD) { nextStep(); |