fix crash on irc message

master
tchncs 2016-05-18 16:41:06 +02:00
parent 829918a747
commit 8ecd2f5800
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ minetest.register_chatcommand(keyword, {
minetest.chat_send_player(player, "# Illuna (wispers): This Keyword is not to be told to anyone who is not an admin.")
minetest.log("[newplayer] granted "..player.." interact!")
if minetest.get_modpath("irc") then
irc:say(("%s %s"):format("*** "..player.." has been granted interact!"))
irc:say(("***%s %s"):format("",""..player.." has been granted interact!"))
end
end,
})