diff --git a/packages/discord.js/src/structures/Guild.js b/packages/discord.js/src/structures/Guild.js index 7d4a900bf9d6..71f8dc014167 100644 --- a/packages/discord.js/src/structures/Guild.js +++ b/packages/discord.js/src/structures/Guild.js @@ -499,6 +499,13 @@ class Guild extends AnonymousGuild { } else { this.incidentsData ??= null; } + + if (data.soundboard_sounds) { + this.soundboardSounds.cache.clear(); + for (const soundboardSound of data.soundboard_sounds) { + this.soundboardSounds._add(soundboardSound); + } + } } /**