mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-28 07:02:38 +00:00
Add a hack so the 'All' room isn't display for hosting
This commit is contained in:
parent
4fd707984b
commit
eac7b2e060
1 changed files with 18 additions and 5 deletions
|
@ -201,6 +201,8 @@ HMS_fetch_rooms (int joining)
|
||||||
char *title;
|
char *title;
|
||||||
char *motd;
|
char *motd;
|
||||||
|
|
||||||
|
int id_no;
|
||||||
|
|
||||||
char *p;
|
char *p;
|
||||||
char *end;
|
char *end;
|
||||||
|
|
||||||
|
@ -212,7 +214,7 @@ HMS_fetch_rooms (int joining)
|
||||||
{
|
{
|
||||||
p = hms->buffer;
|
p = hms->buffer;
|
||||||
|
|
||||||
for (i = 0; i < NUM_LIST_ROOMS && ( end = strstr(p, "\n\n\n") ); ++i)
|
for (i = 0; i < NUM_LIST_ROOMS && ( end = strstr(p, "\n\n\n") );)
|
||||||
{
|
{
|
||||||
*end = '\0';
|
*end = '\0';
|
||||||
|
|
||||||
|
@ -222,11 +224,22 @@ HMS_fetch_rooms (int joining)
|
||||||
|
|
||||||
if (id && title && motd)
|
if (id && title && motd)
|
||||||
{
|
{
|
||||||
room_list[i].header.buffer[0] = 1;
|
id_no = atoi(id);
|
||||||
|
|
||||||
room_list[i].id = atoi(id);
|
/*
|
||||||
strlcpy(room_list[i].name, title, sizeof room_list[i].name);
|
Don't show the 'All' room if hosting. And it's a hack like this
|
||||||
strlcpy(room_list[i].motd, motd, sizeof room_list[i].motd);
|
because I'm way too lazy to add another feature to the MS.
|
||||||
|
*/
|
||||||
|
if (joining || id_no != 0)
|
||||||
|
{
|
||||||
|
room_list[i].header.buffer[0] = 1;
|
||||||
|
|
||||||
|
room_list[i].id = id_no;
|
||||||
|
strlcpy(room_list[i].name, title, sizeof room_list[i].name);
|
||||||
|
strlcpy(room_list[i].motd, motd, sizeof room_list[i].motd);
|
||||||
|
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
p = ( end + 3 );/* skip the three linefeeds */
|
p = ( end + 3 );/* skip the three linefeeds */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue