forked from minetest-mods/irc
		
	Compare commits
	
		
			5 Commits
		
	
	
		
			nalc-1.2.0
			...
			bb8b755362
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| bb8b755362 | |||
| 
						 | 
					758e9b6361 | ||
| ee81559532 | |||
| 
						 | 
					7fbbfd6cdb | ||
| 
						 | 
					cc78f12a4c | 
@@ -31,7 +31,7 @@ minetest.register_on_chat_message(function(name, message)
 | 
			
		||||
	if nl then
 | 
			
		||||
		message = message:sub(1, nl - 1)
 | 
			
		||||
	end
 | 
			
		||||
	irc.say(irc.playerMessage(name, core.strip_colors(message)))
 | 
			
		||||
	irc.say(irc.playerMessage(name, minetest.strip_colors(message)))
 | 
			
		||||
end)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -171,7 +171,7 @@ end
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
function irc.hooks.notice(user, target, message)
 | 
			
		||||
	if user.nick and target == irc.config.channel then
 | 
			
		||||
	if user and user.nick and target == irc.config.channel then
 | 
			
		||||
		irc.sendLocal("-"..user.nick.."@IRC- "..message)
 | 
			
		||||
	end
 | 
			
		||||
end
 | 
			
		||||
 
 | 
			
		||||
@@ -47,7 +47,7 @@ minetest.register_chatcommand("who", {
 | 
			
		||||
			out[n] = plname
 | 
			
		||||
		end
 | 
			
		||||
		table.sort(out)
 | 
			
		||||
		return true, "Players in channel: "..table.concat(out, ", ")
 | 
			
		||||
		return true, n.." player(s) in channel: "..table.concat(out, ", ")
 | 
			
		||||
	end
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user