Skip to content

Commit

Permalink
Merge pull request neplextech#41 from Shashank3736/patch-1
Browse files Browse the repository at this point in the history
solve error in clyde
  • Loading branch information
Snowflake committed Oct 21, 2020
2 parents 4e6db18 + d65d5a2 commit 2b9fa20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Canvacord.js
Original file line number Diff line number Diff line change
Expand Up @@ -967,8 +967,8 @@ class Canvacord {
* @param {string} message Message
* @returns {Promise<Buffer>}
*/
static async clyde(message) {
if (!message) messgae = "Please provide text!";
static async clyde(message = "Please provide text") {
// if (!message) message = "Please provide text!";
await this.__wait()
let avatar = await Canvas.loadImage(await Canvacord.circle(Canvacord.assets("IMAGE").CLYDE));
let badge = await Canvas.loadImage(Canvacord.assets("IMAGE").BOTBADGE);
Expand Down

0 comments on commit 2b9fa20

Please sign in to comment.