From 246c5ac34920f395eb1156bfe7389bcd4973035c Mon Sep 17 00:00:00 2001 From: sheychen Date: Thu, 17 Nov 2016 17:46:44 +0100 Subject: [PATCH 1/2] Changelog --- Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 06b39cf..0397469 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,7 +1,7 @@ # Change Log -## 1.1.0 Release - Soon +## 1.1.0 Release - 17/11/2016 - Complete Network rework - Parties as Chat Channels From 19ad65ed781d88990305da39c5ef91070b5d462b Mon Sep 17 00:00:00 2001 From: sheychen Date: Fri, 18 Nov 2016 10:40:07 +0100 Subject: [PATCH 2/2] Resolve client crash on request to closed server --- Galactic Colors Control/Program.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Galactic Colors Control/Program.cs b/Galactic Colors Control/Program.cs index fce2ec9..6e7e0b3 100644 --- a/Galactic Colors Control/Program.cs +++ b/Galactic Colors Control/Program.cs @@ -227,16 +227,16 @@ namespace Galactic_Colors_Control /// Send success private bool Send(Data packet) { - //try - //{ + try + { ClientSocket.Send(packet.ToBytes()); return true; - /*} + } catch //Can't contact server { _errorCount++; } - return false;*/ + return false; } ///