diff --git a/src/handler/structures/context.ts b/src/handler/structures/context.ts index 025056a..de0ca9a 100644 --- a/src/handler/structures/context.ts +++ b/src/handler/structures/context.ts @@ -41,7 +41,6 @@ export default class Context { public isEmpty() { return this.oMsg.none && this.oInterac.none; } - public get message() { return this.oMsg.unwrap(); } @@ -54,7 +53,7 @@ export default class Context { * if interaction is None return Context.empty() */ - public map_interaction( + public mapInteraction( cb : ( ctx: I ) => B ) : Context { if (this.oInterac.none) return Context.empty();