]> code.citadel.org Git - citadel.git/commitdiff
* rooms.c: removed the warning about the ineffectiveness of kicking
authorArt Cancro <ajc@citadel.org>
Wed, 28 Oct 1998 04:00:33 +0000 (04:00 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 28 Oct 1998 04:00:33 +0000 (04:00 +0000)
          users out of public rooms, because the new server can do lockouts

citadel/ChangeLog
citadel/rooms.c

index 965083d7e1c38dd558fe3596ffb8b8f09754875d..a3b6fede72fe6af00298ab42c34c8924e35c9428 100644 (file)
@@ -3,6 +3,8 @@ Tue Oct 27 22:25:42 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
          sidegrades (also see export5.c elsewhere)
        * citserver.c: clear out cmdbuf before reading a command; some server
          commands were accidentally extracting parameters from previous cmds
+       * rooms.c: removed the warning about the ineffectiveness of kicking
+         users out of public rooms, because the new server can do lockouts
 
 1998-10-27 Nathan Bryant <bryant@cs.usm.maine.edu>
        * sysdep.c (client_gets), ipc_c_tcp.c (serv_gets): improved handling
index 5cb90b76b8547cafbd64eb0da112868498e22f88..197232cc2b4cca17aca718ceb476b3d46f66fc8b 100644 (file)
@@ -679,12 +679,6 @@ void invite(void) {
 void kickout(void) {
        char aaa[31],bbb[256];
 
-       if ((room_flags & QR_PRIVATE)==0) {
-               printf("Note: this is not a private room.  Kicking a user ");
-               printf("out of this room will only\nhave the same effect ");
-               printf("as if they <Z>apped the room.\n\n");
-               }
-
        newprompt("Name of user? ",aaa,30);
        if (aaa[0]==0) return;