From ea62b2e174a7dad107e1b3db9e6f995b3aeb6478 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 1 Aug 2016 17:11:26 +0200 Subject: [PATCH] Added 2 custom reactions from donators --- NadekoBot/_Models/JSONModels/Configuration.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/NadekoBot/_Models/JSONModels/Configuration.cs b/NadekoBot/_Models/JSONModels/Configuration.cs index dbe8455b..cfee97dc 100644 --- a/NadekoBot/_Models/JSONModels/Configuration.cs +++ b/NadekoBot/_Models/JSONModels/Configuration.cs @@ -81,6 +81,12 @@ namespace NadekoBot.Classes.JSONModels "https://cdn.discordapp.com/attachments/140007341880901632/156721724430352385/okawari_01_haruka_weird_mask.jpg", "https://cdn.discordapp.com/attachments/140007341880901632/156721728763068417/mustache-best-girl.png" + } }, + {"%mention% inv", new List() { + "To invite your bot, click on this link -> " + } }, + { "%mention% threaten", new List() { + "You wanna die, %target%?" } } }; @@ -208,7 +214,8 @@ Nadeko Support Server: "; { File.WriteAllText("data/config.json", JsonConvert.SerializeObject(NadekoBot.Config, Formatting.Indented)); } - finally { + finally + { configLock.Release(); } }