From f20c0dde27ce627cba464f02326d814a03622ea3 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 8 Mar 2004 23:00:18 +0000 Subject: [PATCH] binding the spell object --- src/eressea/lua/bindings.h | 1 + src/eressea/server.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/eressea/lua/bindings.h b/src/eressea/lua/bindings.h index 549742fd6..9d1fae102 100644 --- a/src/eressea/lua/bindings.h +++ b/src/eressea/lua/bindings.h @@ -10,5 +10,6 @@ extern void bind_building(struct lua_State * L); extern void bind_faction(struct lua_State * L); extern void bind_alliance(struct lua_State * L); extern void bind_eressea(struct lua_State * L); +extern void bind_spell(lua_State * L) ; #endif diff --git a/src/eressea/server.cpp b/src/eressea/server.cpp index c13972bf3..9b4d1a6e7 100644 --- a/src/eressea/server.cpp +++ b/src/eressea/server.cpp @@ -283,6 +283,7 @@ lua_init(void) luaopen_io(luaState); luabind::open(luaState); bind_eressea(luaState); + bind_spell(luaState); #ifdef ALLIANCES bind_alliance(luaState); #endif