Im trying to make a command that I could use in every server, but when others use "-help" it doesn't show in the list of commands. I know the normal way to do this would be:
if ctx.author.id == myID:
#do some code
But if I do it like this, the user can still see that the command exists when using "-help". Is there any way to get around this? Is there a @commands.command @commands.is_user(myID) ?