changeset 2124 | d39c61eaca15 |
parent 2114 | 9a8ccc7bc3d8 |
child 2125 | 3ebe8cd30b84 |
--- a/hedgewars/CCHandlers.inc Wed May 27 03:48:59 2009 +0000 +++ b/hedgewars/CCHandlers.inc Wed May 27 03:52:07 2009 +0000 @@ -332,6 +332,17 @@ AddChatString(s) end; +procedure chTeamSay(var s: shortstring); +var text: shortstring; +begin +SendIPC('b' + s); + +text:= copy(s, 2, Length(s)-1); +text:= UserNick + ': ' + text; + +AddChatString(text) +end; + procedure chTimer(var s: shortstring); begin if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or (CurrentTeam = nil) then exit;