From 7aeb3b4a6c34a8f679719c207e51394d7e48828b Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Mon, 19 Mar 2012 22:09:25 +0100 Subject: Changed Effect to a component of Actor Reviewed-by: Yohann Ferreira --- src/scripting/lua.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/scripting/lua.cpp') diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 0dd6582..705ee4c 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -443,7 +443,7 @@ static int effect_create(lua_State *s) { // being mode Being *b = checkBeing(s, 2); - Effects::show(id, b->getMap(), b); + Effects::show(id, b); } else { -- cgit