Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Logophilist
2020-10-05 20:21:08 +02:00
20 changed files with 587 additions and 81 deletions

View File

@@ -3,7 +3,7 @@ using System;
namespace RH_Engine
{
class JSONParser
public class JSONParser
{
/// <summary>
/// returns all the users from the given response
@@ -50,7 +50,7 @@ namespace RH_Engine
{
if (d.clientinfo.host == pc.host && d.clientinfo.user == pc.user)
{
Console.WriteLine("connecting to {0}, on {1} with id {2}", pc.user, pc.host, d.id);
Console.WriteLine("[JSONPARSER] connecting to {0}, on {1} with id {2}", pc.user, pc.host, d.id);
return d.id;
}
}