diff --git a/src/structure/client/wrappers/InteractionWrapper.js b/src/structure/client/wrappers/InteractionWrapper.js index 946329f..a07fcdf 100644 --- a/src/structure/client/wrappers/InteractionWrapper.js +++ b/src/structure/client/wrappers/InteractionWrapper.js @@ -195,6 +195,10 @@ class InteractionWrapper { return this.interaction.deferred; } + get values() { + return this.interaction.values; + } + isButton() { return this.interaction.isButton(); } @@ -211,6 +215,10 @@ class InteractionWrapper { return this.interaction.isContextMenu(); } + isSelectMenu() { + return this.interaction.isSelectMenu(); + } + } module.exports = InteractionWrapper; \ No newline at end of file