diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/game-server/testing.cpp | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -2,8 +2,8 @@ * src/game-server/collision.cpp, src/game-server/collision.hpp: Added a function to calculate collisions between circles and circle sectors. - * src/being.cpp, src/object.hpp: Improved hit detection by using said - function. + * src/being.cpp, src/object.hpp, src/testing.cpp: Improved hit detection by + using said function. 2007-02-23 Rogier Polak <rogier.l.a.polak@gmail.com> diff --git a/src/game-server/testing.cpp b/src/game-server/testing.cpp index 61244974..86f47f2c 100644 --- a/src/game-server/testing.cpp +++ b/src/game-server/testing.cpp @@ -36,6 +36,7 @@ void testingMap(int id) { Being *being = new Controlled(OBJECT_MONSTER); being->setSpeed(150); + being->setSize(8); being->setMapId(1); Point pos = { 720, 900 }; being->setPosition(pos); |