Skip to content

Commit

Permalink
adjusted age
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-flip committed Jul 3, 2024
1 parent 408e212 commit cdac0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/ENGINE/checkin/postReaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module.exports.run = async (message) => {
const date = await getDate(message.channel);
if (date && date.isValid()) {
const age = moment().diff(date, 'years');
if (age <= 18) {
if (age <= 17) {
message.channel.send('Hello! You don\'t seem to be old enough for our server.\nPlease come back, when you are old enough.');
checked = true;
checkedText = 'Not old enough';
Expand Down

0 comments on commit cdac0d6

Please sign in to comment.