ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/schmorp-clientchk.ext
(Generate patch)

Comparing deliantra/server/ext/schmorp-clientchk.ext (file contents):
Revision 1.3 by root, Sat Dec 16 13:30:17 2006 UTC vs.
Revision 1.4 by root, Thu Dec 21 22:41:34 2006 UTC

1#! perl 1#! perl
2 2
3# check client version and string for old clients and possibly issue warnings for them 3# check client version and string for old clients and possibly issue warnings for them
4 4
5cf::attach_to_players 5cf::player->attach (
6 on_login => sub { 6 on_login => sub {
7 my ($pl) = @_; 7 my ($pl) = @_;
8 8
9 my $client = $pl->socket->version; 9 my $client = $pl->socket->version;
10 10
44Your client ($client) is known to be buggy. Upgrading is highly recommended, otherwise you may experience crashes, strange lockups or other problems. 44Your client ($client) is known to be buggy. Upgrading is highly recommended, otherwise you may experience crashes, strange lockups or other problems.
45 45
46EOF 46EOF
47 } 47 }
48 }, 48 },
49; 49);
50 50

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines