From 3bafa7808b50f0f509dcd05792cd359c30ad1048 Mon Sep 17 00:00:00 2001 From: Proddy Date: Wed, 7 Sep 2022 16:06:57 +0100 Subject: [PATCH] Update SlashCommandBuilder.cs * Fixing _another_ missing `;` --- .../Entities/Interactions/SlashCommands/SlashCommandBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs b/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs index a5be7452d..70a803dba 100644 --- a/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs +++ b/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs @@ -563,7 +563,7 @@ namespace Discord if (_descriptionLocalizations is not null) props.DescriptionLocalizations = _descriptionLocalizations; - return props + return props; } ///