Better logging

This commit is contained in:
rubenwardy 2015-11-28 02:16:35 +00:00
parent ee1599de5d
commit 843077ff60
3 changed files with 7 additions and 1 deletions

View file

@ -62,6 +62,9 @@ ctf_match.register_on_build_time_start(function()
end)
ctf_match.register_on_build_time_end(function()
if minetest.global_exists("chatplus") then
chatplus.log("Build time over!")
end
minetest.chat_send_all("Build time over! Attack and defend!")
minetest.setting_set("enable_pvp", "true")
for _, player in pairs(minetest.get_connected_players()) do

View file

@ -104,6 +104,9 @@ ctf.register_on_new_game(function()
end
minetest.chat_send_all("Next round!")
if minetest.global_exists("chatplus") then
chatplus.log("Next round!")
end
end)
ctf_flag.register_on_capture(function(attname, flag)