summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 2500061a..44293732 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -513,12 +513,7 @@ void Being::nextTile()
int Being::getCollisionRadius() const
{
// FIXME: Get this from XML file
- int radius = getWidth() / 2;
- if (radius > 32 / 2) radius = 32 / 2;
- // set a default value if no value returned.
- if (radius < 1) radius = 32 / 3;
-
- return radius;
+ return 16;
}
void Being::logic()