Skip to content

Commit

Permalink
1.96c
Browse files Browse the repository at this point in the history
  • Loading branch information
RossenX committed Oct 13, 2021
1 parent 6cce8d5 commit 8050441
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
Binary file modified .vs/NullDC BEAR/v16/.suo
Binary file not shown.
2 changes: 2 additions & 0 deletions NullDC CvS2 BEAR/NetworkHandling.vb
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ Public Class NetworkHandling
Delegate Sub MessageReceived_delegate(ByRef message As String, ByRef senderip As String, ByRef port As String)
Private Sub MessageReceived(ByRef message As String, ByRef senderip As String, ByRef port As String)

If MainformRef.IsClosing Then Exit Sub ' If BEAR is closing then ignore all messages

If message.Length > 500 Then
Console.WriteLine("<-Recieved-> long ass message from " & senderip & ":" & port)
Else
Expand Down
Binary file modified NullDC CvS2 BEAR/Resources/Deps.zip
Binary file not shown.
Binary file modified NullDC CvS2 BEAR/Resources/Updates.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion NullDC CvS2 BEAR/frmMain.vb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Imports System.Text
Imports System.Threading

Public Class frmMain
Public IsBeta As Boolean = True
Public IsBeta As Boolean = False

' Update Stuff
Dim UpdateCheckClient As New WebClient
Expand Down

0 comments on commit 8050441

Please sign in to comment.