-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
550ce27
commit 6333f96
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
exports.answer = async client => ({ | ||
title: `The XY Problem`, | ||
description: `The XY problem is asking about your attempted solution rather than your actual problem. ` | ||
+ `This leads to enormous amounts of wasted time and energy, both on the part of people asking for help, and on the part of those providing help. ` | ||
+ `\nThe problem occurs when people get stuck on what they believe is the solution and are unable step back and explain the issue in full. ` | ||
+ `Please describe the overall task you are attempting to accomplish, and we may be able to point you in a much better direction to solve your problem! ` | ||
+ `\n\nMore information about The XY Problem can be found [HERE](https://xyproblem.info/). `, | ||
color: client.config.EMBED_NORMAL_COLOR, | ||
footer: { | ||
"text": client.config.FRANZBOT_VERSION, | ||
}, | ||
}); | ||
|
||
exports.info = { | ||
name: "why", | ||
category: "help", | ||
aliases: ["xy", "xyproblem"], | ||
}; |