diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 21:55:33 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 21:55:33 +0000 |
| commit | 8cb74cfabe8392194a7e91d099ef3678c5fa61a9 (patch) | |
| tree | 187793a414f4e20e94cd1ab64422db9faa31e274 /src/game/client/gc_hooks.cpp | |
| parent | c4e165f395e90c1c370bac8fa5226c1bee92d6e3 (diff) | |
| download | zcatch-8cb74cfabe8392194a7e91d099ef3678c5fa61a9.tar.gz zcatch-8cb74cfabe8392194a7e91d099ef3678c5fa61a9.zip | |
added more checking to the messages
Diffstat (limited to 'src/game/client/gc_hooks.cpp')
| -rw-r--r-- | src/game/client/gc_hooks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gc_hooks.cpp b/src/game/client/gc_hooks.cpp index 9c242ffc..0d2db63b 100644 --- a/src/game/client/gc_hooks.cpp +++ b/src/game/client/gc_hooks.cpp @@ -503,7 +503,7 @@ extern "C" void modc_message(int msgtype) void *rawmsg = netmsg_secure_unpack(msgtype); if(!rawmsg) { - dbg_msg("client", "dropped weird message '%s' (%d)", netmsg_get_name(msgtype), msgtype); + dbg_msg("client", "dropped weird message '%s' (%d), failed on '%s'", netmsg_get_name(msgtype), msgtype, netmsg_failed_on()); return; } |