mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-16 15:57:54 +02:00
Fix
This commit is contained in:
@@ -1,49 +1,49 @@
|
|||||||
[
|
[
|
||||||
"You got this",
|
"You got this.",
|
||||||
"You'll figure it out",
|
"You'll figure it out.",
|
||||||
"You're a smart cookie",
|
"You're a smart cookie.",
|
||||||
"I believe in you",
|
"I believe in you.",
|
||||||
"Sucking at something is the first step towards being good at something",
|
"Sucking at something is the first step towards being good at something.",
|
||||||
"Struggling is part of learning",
|
"Struggling is part of learning.",
|
||||||
"Everything has cracks - that's how the light gets in",
|
"Everything has cracks - that's how the light gets in.",
|
||||||
"Mistakes don't make you less capable",
|
"Mistakes don't make you less capable.",
|
||||||
"We are all works in progress",
|
"We are all works in progress.",
|
||||||
"You are a capable human",
|
"You are a capable human.",
|
||||||
"You know more than you think",
|
"You know more than you think.",
|
||||||
"10x engineers are a myth",
|
"10x engineers are a myth.",
|
||||||
"If everything was easy you'd be bored",
|
"If everything was easy you'd be bored.",
|
||||||
"I admire you for taking this on",
|
"I admire you for taking this on.",
|
||||||
"You're resourceful and clever",
|
"You're resourceful and clever.",
|
||||||
"You'll find a way",
|
"You'll find a way.",
|
||||||
"I know you'll sort it out",
|
"I know you'll sort it out.",
|
||||||
"Struggling means you're learning",
|
"Struggling means you're learning.",
|
||||||
"You're doing a great job",
|
"You're doing a great job.",
|
||||||
"It'll feel magical when it's working",
|
"It'll feel magical when it's working.",
|
||||||
"I'm rooting for you",
|
"I'm rooting for you.",
|
||||||
"Your mind is full of brilliant ideas",
|
"Your mind is full of brilliant ideas.",
|
||||||
"You make a difference in the world by simply existing in it",
|
"You make a difference in the world by simply existing in it.",
|
||||||
"You are learning valuable lessons from yourself every day",
|
"You are learning valuable lessons from yourself every day.",
|
||||||
"You are worthy and deserving of respect",
|
"You are worthy and deserving of respect.",
|
||||||
"You know more than you knew yesterday",
|
"You know more than you knew yesterday.",
|
||||||
"You're an inspiration",
|
"You're an inspiration.",
|
||||||
"Your life is already a miracle of chance waiting for you to shape its destiny",
|
"Your life is already a miracle of chance waiting for you to shape its destiny.",
|
||||||
"Your life is about to be incredible",
|
"Your life is about to be incredible.",
|
||||||
"Nothing is impossible. The word itself says 'I’m possible!'",
|
"Nothing is impossible. The word itself says 'I’m possible!'.",
|
||||||
"Failure is just another way to learn how to do something right",
|
"Failure is just another way to learn how to do something right.",
|
||||||
"I give myself permission to do what is right for me",
|
"I give myself permission to do what is right for me.",
|
||||||
"You can do it",
|
"You can do it.",
|
||||||
"It is not a sprint, it is a marathon. One step at a time",
|
"It is not a sprint, it is a marathon. One step at a time.",
|
||||||
"Success is the progressive realization of a worthy goal",
|
"Success is the progressive realization of a worthy goal.",
|
||||||
"People with goals succeed because they know where they’re going",
|
"People with goals succeed because they know where they’re going.",
|
||||||
"All you need is the plan, the roadmap, and the courage to press on to your destination",
|
"All you need is the plan, the roadmap, and the courage to press on to your destination.",
|
||||||
"The opposite of courage in our society is not cowardice... it is conformity",
|
"The opposite of courage in our society is not cowardice... it is conformity.",
|
||||||
"Whenever we’re afraid, it’s because we don’t know enough. If we understood enough, we would never be afraid",
|
"Whenever we’re afraid, it’s because we don’t know enough. If we understood enough, we would never be afraid.",
|
||||||
"The past does not equal the future",
|
"The past does not equal the future.",
|
||||||
"The path to success is to take massive, determined action",
|
"The path to success is to take massive, determined action.",
|
||||||
"It’s what you practice in private that you will be rewarded for in public",
|
"It’s what you practice in private that you will be rewarded for in public.",
|
||||||
"Small progress is still progress",
|
"Small progress is still progress.",
|
||||||
"Don't worry if you find flaws in your past creations, it's because you've evolved",
|
"Don't worry if you find flaws in your past creations, it's because you've evolved.",
|
||||||
"Starting is the most difficult step - but you can do it",
|
"Starting is the most difficult step - but you can do it.",
|
||||||
"Don't forget to enjoy the journey",
|
"Don't forget to enjoy the journey.",
|
||||||
"It's not a mistake, it's a learning opportunity"
|
"It's not a mistake, it's a learning opportunity."
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -20,6 +20,6 @@ module.exports = class AffirmationCommand extends Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
run(msg) {
|
run(msg) {
|
||||||
return msg.say(`${affirmations[Math.floor(Math.random() * affirmations.length)]}.`);
|
return msg.say(affirmations[Math.floor(Math.random() * affirmations.length)]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user