Skip to content

Commit cd175e6

Browse files
committedJul 3, 2024·
reversed change
1 parent 4bdf68a commit cd175e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎functions/ENGINE/checkin/postReaction.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module.exports.run = async (message) => {
6868
const date = await getDate(message.channel);
6969
if (date && date.isValid()) {
7070
const age = moment().diff(date, 'years');
71-
if (age < 18) {
71+
if (age <= 18) {
7272
message.channel.send('Hello! You don\'t seem to be old enough for our server.\nPlease come back, when you are old enough.');
7373
checked = true;
7474
checkedText = 'Not old enough';

0 commit comments

Comments
 (0)
Please sign in to comment.