summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2008-05-22 19:55:23 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2008-05-22 19:55:23 +0000
commit45f0e8a6c867eb7548b4680a727e8b3cdd23f012 (patch)
tree426068569ac4237d8a87c137d6b224332443a5e0 /src
parent41472ab7f6cdbfc55c44c6487956a36f7fb16508 (diff)
downloadmanaserv-45f0e8a6c867eb7548b4680a727e8b3cdd23f012.tar.gz
manaserv-45f0e8a6c867eb7548b4680a727e8b3cdd23f012.tar.bz2
manaserv-45f0e8a6c867eb7548b4680a727e8b3cdd23f012.tar.xz
manaserv-45f0e8a6c867eb7548b4680a727e8b3cdd23f012.zip
small style change.
Diffstat (limited to 'src')
-rw-r--r--src/scripting/lua.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp
index 622096eb..cb8e906c 100644
--- a/src/scripting/lua.cpp
+++ b/src/scripting/lua.cpp
@@ -708,7 +708,7 @@ static int LuaGetBeingsInCircle(lua_State *s)
{
Being *b = static_cast<Being *> (*i);
if (Collision::CircleWithCircle(b->getPosition(), b->getSize(),
- Point (x, y), r))
+ Point(x, y), r))
{
lua_pushinteger(s, tableIndex);
lua_pushlightuserdata (s, b);