diff options
author | Erik Schilling <ablu.erikschilling@gmail.com> | 2013-11-01 17:40:57 +0100 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@gmail.com> | 2013-11-01 17:40:57 +0100 |
commit | c4ba9369b0c7ca48dbdf80d130403747cb7bd78c (patch) | |
tree | 9d2c22d6809d08403d0818d892bb01dc67822f99 /src | |
parent | 731d87cab6975f93878e8066e328eee2e8115f29 (diff) | |
download | manaserv-c4ba9369b0c7ca48dbdf80d130403747cb7bd78c.tar.gz manaserv-c4ba9369b0c7ca48dbdf80d130403747cb7bd78c.tar.bz2 manaserv-c4ba9369b0c7ca48dbdf80d130403747cb7bd78c.tar.xz manaserv-c4ba9369b0c7ca48dbdf80d130403747cb7bd78c.zip |
Fixed typo in docs
Diffstat (limited to 'src')
-rw-r--r-- | src/scripting/lua.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 7a38ea95..2c61f95d 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -217,7 +217,7 @@ static int on_map_initialize(lua_State *s) /** LUA on_craft (callbacks) * on_craft(function ref) ** - * Will make sure that the function `ref` gets called with the the crafting + * Will make sure that the function `ref` gets called with the crafting * character and a table with the recipes {(id, amount}) when a character * performs crafting. */ @@ -231,7 +231,7 @@ static int on_craft(lua_State *s) /** LUA on_mapupdate (callbacks) * on_mapupdate(function ref) ** - * Will make sure that the function `ref` gets called with the the map id + * Will make sure that the function `ref` gets called with the map id * as argument for each game tick and map. */ static int on_mapupdate(lua_State *s) |