From c3c37e65bba9211ecc09cece4353d06511c055c2 Mon Sep 17 00:00:00 2001 From: Proddy Date: Wed, 7 Sep 2022 16:03:25 +0100 Subject: [PATCH] Update SlashCommandBuilder.cs Fixing a 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 a03300479..a5be7452d 100644 --- a/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs +++ b/src/Discord.Net.Core/Entities/Interactions/SlashCommands/SlashCommandBuilder.cs @@ -561,7 +561,7 @@ namespace Discord if (_nameLocalizations is not null) props.NameLocalizations = _nameLocalizations; if (_descriptionLocalizations is not null) - props.DescriptionLocalizations = _descriptionLocalizations, + props.DescriptionLocalizations = _descriptionLocalizations; return props }