From 6eadd30b19903d395867b6b487ce6a7a7541237b Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 5 May 2016 21:14:32 +0200 Subject: Add DCC Chat ability --- src/CRSMConfig.hpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/CRSMConfig.hpp') diff --git a/src/CRSMConfig.hpp b/src/CRSMConfig.hpp index 22458e9..a566092 100644 --- a/src/CRSMConfig.hpp +++ b/src/CRSMConfig.hpp @@ -71,10 +71,16 @@ public: String IngameChannel = "#crsm-ingame"; String QuitMessage = "Dedicated Clonk server powered by CRSM"; Integer ReconnectDelay = 10; - String ScenListMessage = "A list of available scenarios is available ingame or in a lobby."; + String ScenListMessage = "A list of available scenarios is available over DCC, ingame or in a lobby."; Map(String, String) Moderators; } IRC; + struct { + Boolean Use = true; + Integer Port = 9373; + String Address = "0.0.0.0"; + } DCC; + struct { struct { @@ -161,6 +167,12 @@ public: + ConfigVal(DCC.Use), + ConfigVal(DCC.Address), + ConfigVal(DCC.Port), + + + ConfigVal(Auto.ProcessManager.ReattachId), -- cgit v1.2.3-54-g00ecf