Detection of client version for restriction

This commit is contained in:
asayre 2007-01-01 08:09:18 +00:00
parent fe4c9e4f73
commit d32e879c49
2 changed files with 24 additions and 1 deletions

View file

@ -149,6 +149,10 @@ namespace Server
}
}
public ClientVersion( int maj, int min, int rev, int pat ) : this( maj, min, rev, pat, ClientType.Regular )
{
}
public ClientVersion( int maj, int min, int rev, int pat, ClientType type )
{
m_Major = maj;