mirror of
				https://github.com/jlu5/PyLink.git
				synced 2025-11-04 00:47:21 +01:00 
			
		
		
		
	plugins/admin: allow sending KICK from servers (#90)
This commit is contained in:
		
							parent
							
								
									bd2bd55e89
								
							
						
					
					
						commit
						c1d98838d7
					
				@ -144,12 +144,15 @@ def kick(irc, source, args):
 | 
			
		||||
    except IndexError:
 | 
			
		||||
        utils.msg(irc, source, "Error: not enough arguments. Needs 3-4: source nick, channel, target, reason (optional).")
 | 
			
		||||
        return
 | 
			
		||||
    u = utils.nickToUid(irc, nick)
 | 
			
		||||
    u = utils.nickToUid(irc, nick) or nick
 | 
			
		||||
    targetu = utils.nickToUid(irc, target)
 | 
			
		||||
    if not utils.isChannel(channel):
 | 
			
		||||
        utils.msg(irc, source, "Error: Invalid channel name %r." % channel)
 | 
			
		||||
        return
 | 
			
		||||
    irc.proto.kickClient(irc, u, channel, targetu, reason)
 | 
			
		||||
    if utils.isInternalServer(irc, u):
 | 
			
		||||
        irc.proto.kickServer(irc, u, channel, targetu, reason)
 | 
			
		||||
    else:
 | 
			
		||||
        irc.proto.kickClient(irc, u, channel, targetu, reason)
 | 
			
		||||
    irc.callHooks([u, 'PYLINK_ADMIN_KICK', {'channel': channel, 'target': targetu, 'text': reason, 'parse_as': 'KICK'}])
 | 
			
		||||
 | 
			
		||||
@utils.add_cmd
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user