From d9b18d551fad3210ae2bb49e72022382ecef063b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 9 Dec 2017 17:59:10 -0500 Subject: [PATCH] Add missing Byond endpoint --- TGS.Server/Server.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TGS.Server/Server.cs b/TGS.Server/Server.cs index bff344d465..eff1d58fa9 100644 --- a/TGS.Server/Server.cs +++ b/TGS.Server/Server.cs @@ -320,6 +320,7 @@ namespace TGS.Server AddEndpoint(host, typeof(ITGConnectivity)); AddEndpoint(host, typeof(ITGAdministration)); + AddEndpoint(host, typeof(ITGByond)); AddEndpoint(host, typeof(ITGChat)); AddEndpoint(host, typeof(ITGCompiler)); AddEndpoint(host, typeof(ITGConfig));