hedgewars/uFLNetProtocol.pas
branchqmlfrontend
changeset 11420 ef7f8ac96dfa
parent 11419 8a5cc31483c6
child 11423 e045dc60c37e
equal deleted inserted replaced
11419:8a5cc31483c6 11420:ef7f8ac96dfa
   188 begin
   188 begin
   189     roomInfo:= roomInfo + s.str1 + #10;
   189     roomInfo:= roomInfo + s.str1 + #10;
   190 
   190 
   191     if roomLinesCount = 8 then
   191     if roomLinesCount = 8 then
   192     begin
   192     begin
   193         sendUI(mtAddRoom, @roomInfo[1], length(roomInfo));
   193         sendUI(mtAddRoom, @roomInfo[1], length(roomInfo) - 1);
   194         roomLinesCount:= 0;
   194         roomLinesCount:= 0;
   195         roomInfo:= ''
   195         roomInfo:= ''
   196     end else inc(roomLinesCount);
   196     end else inc(roomLinesCount);
   197 end;
   197 end;
   198 
   198