Skip to content

Commit

Permalink
subage improve messaging even further
Browse files Browse the repository at this point in the history
  • Loading branch information
Supinic committed Oct 17, 2024
1 parent a76ff0e commit 642e8b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commands/subage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ module.exports = {
const { daysRemaining, months } = relationship.cumulativeTenure;
if (!relationship.subscriptionBenefit) {
if (daysRemaining === 0 && months === 0) {
const verb = (userString.startsWith("User")) ? "has" : "have";
return {
reply: `${userString} not subscribed to ${channelString}, and never has been.`
reply: `${userString} not subscribed to ${channelString}, and never ${verb} been.`
};
}
else {
Expand Down

0 comments on commit 642e8b4

Please sign in to comment.