diff options
| author | Choupom <andycootlapin@hotmail.fr> | 2011-06-01 19:31:13 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-06-02 17:39:05 +0200 |
| commit | 1a020170949d625467ab21599ba9e43d6169e83f (patch) | |
| tree | f284c01b0bd1e9a0298bd8ab423d0b48dbf31a57 /src/game/server | |
| parent | 7df537fd687a6e6fd7797c1f98eb99f2376b4ed0 (diff) | |
| download | zcatch-1a020170949d625467ab21599ba9e43d6169e83f.tar.gz zcatch-1a020170949d625467ab21599ba9e43d6169e83f.zip | |
fixed some strings
Diffstat (limited to 'src/game/server')
| -rw-r--r-- | src/game/server/gamecontext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index 1234e8e4..95a499d2 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -691,12 +691,12 @@ void CGameContext::OnMessage(int MsgID, CUnpacker *pUnpacker, int ClientID) } if(KickID == ClientID) { - SendChatTarget(ClientID, "You cant kick yourself"); + SendChatTarget(ClientID, "You can't kick yourself"); return; } if(Server()->IsAuthed(KickID)) { - SendChatTarget(ClientID, "You cant kick admins"); + SendChatTarget(ClientID, "You can't kick admins"); char aBufKick[128]; str_format(aBufKick, sizeof(aBufKick), "'%s' called for vote to kick you", Server()->ClientName(ClientID)); SendChatTarget(KickID, aBufKick); @@ -731,7 +731,7 @@ void CGameContext::OnMessage(int MsgID, CUnpacker *pUnpacker, int ClientID) } if(SpectateID == ClientID) { - SendChatTarget(ClientID, "You cant move yourself"); + SendChatTarget(ClientID, "You can't move yourself"); return; } |