Update matrix mod name

This commit is contained in:
tacotexmex 2018-06-24 10:22:27 +02:00
parent 09897c4364
commit 333190f735
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
irc?
matrix?
matrix_chat?

View File

@ -65,7 +65,7 @@ end
local function send_message(hour, minute)
if message_status.open == true then
message_status.open = false
if minetest.get_modpath("matrix") ~= nil and matrix.connected then
if minetest.get_modpath("matrix_chat") ~= nil and matrix.connected then
matrix.say(message.open)
end
if minetest.get_modpath("irc") ~= nil and irc.connected then
@ -126,7 +126,7 @@ minetest.register_globalstep(function(dtime)
end
end
if message_status.closing then
if minetest.get_modpath("matrix") ~= nil and matrix.connected then
if minetest.get_modpath("matrix_chat") ~= nil and matrix.connected then
matrix.say(message.closing)
end
if minetest.get_modpath("irc") ~= nil and irc.connected then