DEADSOFTWARE

removed e_writelog from g_netmaster
authorfgsfds <pvt.fgsfds@gmail.com>
Sun, 20 Aug 2017 01:48:27 +0000 (04:48 +0300)
committerfgsfds <pvt.fgsfds@gmail.com>
Sun, 20 Aug 2017 01:48:27 +0000 (04:48 +0300)
src/game/g_netmaster.pas

index 4b9573d99a9ee476f8b57bec618f9a972f8e2a7d..3e5a30b8aac01efc6d66acd9f8db004076ff836a 100644 (file)
@@ -130,8 +130,6 @@ begin
 
   NetOut.Clear();
   NetOut.Write(Byte(NET_MMSG_GET));
-  e_WriteLog('Wr ' + IntToStr(PByte(NetOut.Data)^) + ' !.', MSG_NOTIFY);
-  e_WriteLog('Wr ' + IntToStr(NetOut.CurSize) + ' !.', MSG_NOTIFY);
 
   P := enet_packet_create(NetOut.Data, NetOut.CurSize, Cardinal(ENET_PACKET_FLAG_RELIABLE));
   enet_peer_send(NetMPeer, NET_MCHAN_MAIN, P);
@@ -144,14 +142,11 @@ begin
       if not InMsg.Init(NetMEvent.packet^.data, NetMEvent.packet^.dataLength, True) then continue;
 
       MID := InMsg.ReadByte();
-      e_WriteLog('Retrieved ' + IntToStr(MID) + ' !.', MSG_NOTIFY);
 
       if MID <> NET_MMSG_GET then continue;
 
       Cnt := InMsg.ReadByte();
-      e_WriteLog('Retrieved ' + IntToStr(Cnt) + ' server(s).', MSG_NOTIFY);
       g_Console_Add(_lc[I_NET_MSG] + Format(_lc[I_NET_SLIST_RETRIEVED], [Cnt]), True);
-      //writeln('BOO!');
 
       if Cnt > 0 then
       begin