summaryrefslogtreecommitdiff
path: root/src/controller.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-09-02 12:03:22 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-09-02 12:03:22 +0000
commit379c0e936e090a19d295d8514cf94b4fb367eae6 (patch)
tree3297be7e5a53ed55c5db92bc80e0e65db2ee7bb3 /src/controller.cpp
parent1140de4450b3840340df6459eb6d13cc02496e46 (diff)
downloadmanaserv-379c0e936e090a19d295d8514cf94b4fb367eae6.tar.gz
manaserv-379c0e936e090a19d295d8514cf94b4fb367eae6.tar.bz2
manaserv-379c0e936e090a19d295d8514cf94b4fb367eae6.tar.xz
manaserv-379c0e936e090a19d295d8514cf94b4fb367eae6.zip
Decorrelated moving object IDs from character database IDs. Switched to short IDs instead.
Diffstat (limited to 'src/controller.cpp')
-rw-r--r--src/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.cpp b/src/controller.cpp
index 17f15017..a73b7a5f 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -60,7 +60,7 @@ void Controller::update()
unsigned int randomY = rand() % 320 + 840;
LOG_INFO("Setting new random destination " << randomX << ","
- << randomY << " for being " << mBeing->getID(), 2);
+ << randomY << " for being " << mBeing->getPublicID(), 2);
mBeing->setDestination(randomX, randomY);
}