summaryrefslogtreecommitdiff
path: root/src/scripting
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-12-29 19:53:06 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-12-29 19:53:06 +0100
commit8733cdf3ab6969613301138b05070a441a657b76 (patch)
treea8d64e2f7d03f32404841e843efda975b99997c1 /src/scripting
parent5f03e73484a50c9689956b32ef97630b56d2a00d (diff)
downloadmanaserv-8733cdf3ab6969613301138b05070a441a657b76.tar.gz
manaserv-8733cdf3ab6969613301138b05070a441a657b76.tar.bz2
manaserv-8733cdf3ab6969613301138b05070a441a657b76.tar.xz
manaserv-8733cdf3ab6969613301138b05070a441a657b76.zip
Moved parts needing to be in sync with the client in protocol.h.
Trivial fix.
Diffstat (limited to 'src/scripting')
-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 e672c1a6..f79f2f8d 100644
--- a/src/scripting/lua.cpp
+++ b/src/scripting/lua.cpp
@@ -822,7 +822,7 @@ static int being_set_action(lua_State *s)
if (being)
{
- being->setAction((Being::Action) act);
+ being->setAction((BeingAction) act);
}
return 0;