You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed "/changelog" not accepting execution without argument
- Fixed a bug where trying to execute "/changelog" command without tag name argument will fail
- Disallow giving items to oneself
- Changed unnecessary use of raw string literal (`Please mention someone!`) for "/give" error message
messageToSend="Tag name must be in a format of \"a.b.c\" or \"va.b.c\" (where a, b, c are numbers) with optional suffix for alpha, beta and rc releases, without any leading 0s!";
466
-
returnmessage.reply(messageToSend)
467
-
.catch(error=>console.error(`An error occured while replying "${messageToSend}" to message!\n\nFull details:\n${error.toString()}`));
messageToSend="Tag name must be in a format of \"a.b.c\" or \"va.b.c\" (where a, b, c are numbers) with optional suffix for alpha, beta and rc releases, without any leading 0s!";
474
+
returnmessage.reply(messageToSend)
475
+
.catch(error=>console.error(`An error occured while replying "${messageToSend}" to message!\n\nFull details:\n${error.toString()}`));
0 commit comments