aboutsummaryrefslogtreecommitdiff
path: root/doc/minetest.6
Commit message (Collapse)AuthorAge
* Add --version optionKahrl2013-09-28
|
* Add --migrate to manpages and update manpage datesKahrl2013-09-10
|
* Replace c55.me linksKahrl2013-06-03
|
* Add --videomodes option to show available video modesKahrl2013-05-09
|
* Fix hypen used as minus sign (manpages), fix spelling error (server.cpp)Ilya Zhuravlev2012-12-17
|
* Add output levels --info and --trace (--verbose is now more verbose)Perttu Ahola2012-03-22
|
* Update --gameid to manpagesPerttu Ahola2012-03-11
|
* Improve command-line parametersPerttu Ahola2012-03-11
|
* Add UNIX man pages to aid package creators.Juhani Numminen2012-02-28
="hl opt">(L, "core"); lua_getfield(L, -1, "registered_on_modchannel_message"); // Call callbacks lua_pushstring(L, channel.c_str()); lua_pushstring(L, sender.c_str()); lua_pushstring(L, message.c_str()); runCallbacks(3, RUN_CALLBACKS_MODE_AND); } void ScriptApiModChannels::on_modchannel_signal( const std::string &channel, ModChannelSignal signal) { SCRIPTAPI_PRECHECKHEADER // Get core.registered_on_generateds lua_getglobal(L, "core"); lua_getfield(L, -1, "registered_on_modchannel_signal"); // Call callbacks lua_pushstring(L, channel.c_str()); lua_pushinteger(L, (int)signal); runCallbacks(2, RUN_CALLBACKS_MODE_AND); }