Fix missing args in userinfo
This commit is contained in:
parent
de063c1411
commit
b5b7c8ca81
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ class UtilCog(Scale):
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
async def _userinfo_slsh(self, ctx: InteractionContext, user: User = None) -> None:
|
async def _userinfo_slsh(self, ctx: InteractionContext, user: User = None) -> None:
|
||||||
await self._userinfo()
|
await self._userinfo(ctx, user)
|
||||||
|
|
||||||
@context_menu(name="User Info", context_type=CommandTypes.USER)
|
@context_menu(name="User Info", context_type=CommandTypes.USER)
|
||||||
async def _userinfo_menu(self, ctx: InteractionContext) -> None:
|
async def _userinfo_menu(self, ctx: InteractionContext) -> None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue