We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bdf68a commit cd175e6Copy full SHA for cd175e6
functions/ENGINE/checkin/postReaction.js
@@ -68,7 +68,7 @@ module.exports.run = async (message) => {
68
const date = await getDate(message.channel);
69
if (date && date.isValid()) {
70
const age = moment().diff(date, 'years');
71
- if (age < 18) {
+ if (age <= 18) {
72
message.channel.send('Hello! You don\'t seem to be old enough for our server.\nPlease come back, when you are old enough.');
73
checked = true;
74
checkedText = 'Not old enough';
0 commit comments