From 569544ac7e760a060254ca677a67111fc2ffb69a Mon Sep 17 00:00:00 2001 From: luk3yx Date: Sat, 24 Feb 2018 12:43:18 +1300 Subject: [PATCH] Change irc:say() to irc.say() --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 4dd91c2..b96405c 100755 --- a/init.lua +++ b/init.lua @@ -28,7 +28,7 @@ local checkReboot checkReboot = function() if reboot and next(minetest.get_connected_players()) == nil then -- Time to reboot - if irc then irc:say("The server is empty! Rebooting...") end + if irc then irc.say("The server is empty! Rebooting...") end minetest.request_shutdown("Rebooting...", true, 0) end end