#5104 Unknown client -MG21r0-

This commit is contained in:
Mitchell Livingston 2012-10-25 03:22:41 +00:00
parent a981f4b6a6
commit ff83b4ee56
1 changed files with 4 additions and 0 deletions

View File

@ -299,6 +299,10 @@ tr_clientForId( char * buf, size_t buflen, const void * id_in )
else if( !memcmp( &id[4], "A0C", 3 ) ) tr_snprintf( buf, buflen, "Bits on Wheels 1.0.6" );
else tr_snprintf( buf, buflen, "Bits on Wheels %c.%c.%c", id[4], id[5], id[5] );
}
else if( !memcmp( id+1, "MG", 2 ) )
{
tr_snprintf( buf, buflen, "MediaGet %d.%02d", charint(id[3]), charint(id[4]) );
}
if( *buf )
return;