Esempio n. 1
0
 /**
  *	Request the modes in a channel - used for user modes.
  *	Do we need to call this any more?
  *
  *	@ignore
  *	@param string $sChannel Channel name.
  */
 function getNames($sChannel)
 {
     if (!$sChannel) {
         return false;
     }
     if ($this->oCurrentBot->isClone()) {
         return false;
     }
     $this->sendRaw("NAMES {$sChannel}");
     return true;
 }