From 5225c6fc8847deaceafc4935b379ba70fe2b5efb Mon Sep 17 00:00:00 2001 From: appelemac Date: Tue, 26 Apr 2016 16:31:45 +0200 Subject: [PATCH] Add to config --- NadekoBot/_Models/JSONModels/Configuration.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NadekoBot/_Models/JSONModels/Configuration.cs b/NadekoBot/_Models/JSONModels/Configuration.cs index 91d866ed..2535d6b2 100644 --- a/NadekoBot/_Models/JSONModels/Configuration.cs +++ b/NadekoBot/_Models/JSONModels/Configuration.cs @@ -17,7 +17,8 @@ namespace NadekoBot.Classes.JSONModels [JsonIgnore] public List PokemonTypes { get; set; } = new List(); - + public Dictionary CustomReactions { get; set; } = new Dictionary(); + public List RotatingStatuses { get; set; } = new List(); public CommandPrefixesModel CommandPrefixes { get; set; } = new CommandPrefixesModel(); public HashSet ServerBlacklist { get; set; } = new HashSet();