All pastes #2048800 Raw Edit

Mine

public text v1 · immutable
#2048800 ·published 2011-04-20 23:36 UTC
rendered paste body
sub nick_change
{
  my ( $from, $to ) = ( $_[1], $_[2] );
  if ( grep( /$from/, @users ) )
   {
     @users = grep( !/$from/, @users );
     push( @users, $to );
   }
}