diff options
| author | heinrich5991 <heinrich5991@gmail.com> | 2011-02-14 19:41:32 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-04-01 00:05:35 +0200 |
| commit | b6fa69cedb9d2b5117afe092b1c600f9f04c6a77 (patch) | |
| tree | 6601a9ca06a62762cad5d695e7c22b6824602ba3 /src/engine/server.h | |
| parent | 8cd7dec1793a74dd922192a3f6a430208b8eb526 (diff) | |
| download | zcatch-b6fa69cedb9d2b5117afe092b1c600f9f04c6a77.tar.gz zcatch-b6fa69cedb9d2b5117afe092b1c600f9f04c6a77.zip | |
the server shows the disconnect reason of clients now
Diffstat (limited to 'src/engine/server.h')
| -rw-r--r-- | src/engine/server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/server.h b/src/engine/server.h index c8e55110..c27365ca 100644 --- a/src/engine/server.h +++ b/src/engine/server.h @@ -77,7 +77,7 @@ public: virtual void OnClientConnected(int ClientID) = 0; virtual void OnClientEnter(int ClientID) = 0; - virtual void OnClientDrop(int ClientID) = 0; + virtual void OnClientDrop(int ClientID, const char *pReason) = 0; virtual void OnClientDirectInput(int ClientID, void *pInput) = 0; virtual void OnClientPredictedInput(int ClientID, void *pInput) = 0; |