From 8e1a133f416d4d3fbb92adaf9f775353cb0d7884 Mon Sep 17 00:00:00 2001 From: tchncs Date: Tue, 27 Sep 2016 19:10:38 +0200 Subject: [PATCH] replace market message with be nice message, increase message interval add flight and playereffects mod --- .gitmodules | 6 ++++++ mods/flight | 1 + mods/playereffects | 1 + mods/random_messages/init.lua | 6 +++--- 4 files changed, 11 insertions(+), 3 deletions(-) create mode 160000 mods/flight create mode 160000 mods/playereffects diff --git a/.gitmodules b/.gitmodules index 7d1c0510..005e4a7c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -78,3 +78,9 @@ [submodule "mods/technic"] path = mods/technic url = https://github.com/minetest-technic/technic +[submodule "mods/flight"] + path = mods/flight + url = https://github.com/Amaz1/flight +[submodule "mods/playereffects"] + path = mods/playereffects + url = git://repo.or.cz/minetest_playereffects.git diff --git a/mods/flight b/mods/flight new file mode 160000 index 00000000..82ddbce6 --- /dev/null +++ b/mods/flight @@ -0,0 +1 @@ +Subproject commit 82ddbce69109144ec85fe3dcf13e431c9d89c9e4 diff --git a/mods/playereffects b/mods/playereffects new file mode 160000 index 00000000..860358bc --- /dev/null +++ b/mods/playereffects @@ -0,0 +1 @@ +Subproject commit 860358bcd1b30cbf5888588fe50d1b02dadbea43 diff --git a/mods/random_messages/init.lua b/mods/random_messages/init.lua index 056e9e00..0e079458 100644 --- a/mods/random_messages/init.lua +++ b/mods/random_messages/init.lua @@ -27,9 +27,9 @@ function table.random( t ) end function random_messages.initialize() --Set the interval in minetest.conf. - minetest.setting_set("random_messages_interval",1800) + minetest.setting_set("random_messages_interval",3600) minetest.setting_save(); - return 1800 + return 3600 end function random_messages.set_interval() --Read the interval from minetest.conf(set it if it doesn'st exist) @@ -51,7 +51,7 @@ function random_messages.read_messages() "# Illuna-Notes: Meet your fellows on our Mumbleserver at tchncs.de", "# Illuna-Notes: Enjoy Illuna? Invite your friends today!", "# Illuna-Notes: Have something to share? Create and join discussion at the Illuna forum: https://forum.illuna-minetest.tk!", - "# Illuna-Notes: Sell and buy stuff on the Illuna marketplace. It is below the spawnhouse." + "# Illuna-Notes: Please be nice to the players around you. :)", } end