Changeset 3315

Show
Ignore:
Timestamp:
07/02/06 18:51:07 (2 years ago)
Author:
rinoa
Message:

Fixes #732 when right-clicking the user to ban caused a ban to *!*@* instead of the hostname.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Panels/JVChatRoomMember.m

    r3287 r3315  
    580580 
    581581- (IBAction) ban:(id) sender { 
    582         MVChatUser *user = [MVChatUser wildcardUserWithNicknameMask:nil andHostMask:[NSString stringWithFormat:@"*!*@%@", [self address]]]; 
     582        MVChatUser *user = [MVChatUser wildcardUserWithNicknameMask:nil andHostMask:[NSString stringWithFormat:@"*@%@", [self address]]]; 
    583583        [[[self room] target] addBanForUser:user]; 
    584584}