# HG changeset patch # User Waqas Hussain # Date 1252338496 -18000 # Node ID 4db786919805860625fe071c3145a2a0b45c379d # Parent 55ee6e792e3e8e179620abb4f903391495fa1c02 MUC: Added kicking support. diff -r 55ee6e792e3e -r 4db786919805 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Mon Sep 07 20:43:25 2009 +0500 +++ b/plugins/muc/muc.lib.lua Mon Sep 07 20:48:16 2009 +0500 @@ -488,6 +488,7 @@ return session and session.role or nil; end function room_mt:set_role(actor, nick, role, callback) + if role == "none" then role = nil; end if role and role ~= "moderator" and role ~= "participant" and role ~= "visitor" then return nil, "modify", "not-acceptable"; end if self:get_affiliation(actor) ~= "owner" then return nil, "cancel", "not-allowed"; end local occupant = self._occupants[nick];