From d0b6dce04bf6f8cd129ae5f47cf64e6253fff412 Mon Sep 17 00:00:00 2001 From: akk312000 Date: Sun, 9 Oct 2022 10:12:21 +0530 Subject: [PATCH 1/3] Added Clippy Message --- src/panel/pets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel/pets.ts b/src/panel/pets.ts index 9053debd..2e053188 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -800,7 +800,7 @@ export class Clippy extends BasePetType { } hello(): string { // TODO: #188 Add a custom message for clippy - return ` says hello 👋!`; + return ` Hi, I'm Clippy, would you like some assitance today? 👋!`; } } From 17cfff958db8cc1d0aff9426f239c34e60573ead Mon Sep 17 00:00:00 2001 From: akk312000 Date: Sun, 9 Oct 2022 10:15:29 +0530 Subject: [PATCH 2/3] fix: typo --- src/panel/pets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel/pets.ts b/src/panel/pets.ts index 2e053188..c8270060 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -800,7 +800,7 @@ export class Clippy extends BasePetType { } hello(): string { // TODO: #188 Add a custom message for clippy - return ` Hi, I'm Clippy, would you like some assitance today? 👋!`; + return ` Hi, I'm Clippy, would you like some assistance today? 👋!`; } } From f7eb05da01ae1718a61b47dc69c31d4f33dd0038 Mon Sep 17 00:00:00 2001 From: akk312000 Date: Sun, 9 Oct 2022 10:59:53 +0530 Subject: [PATCH 3/3] fix:removed comment --- src/panel/pets.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/panel/pets.ts b/src/panel/pets.ts index c8270060..00c1c025 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -799,7 +799,6 @@ export class Clippy extends BasePetType { return '📎'; } hello(): string { - // TODO: #188 Add a custom message for clippy return ` Hi, I'm Clippy, would you like some assistance today? 👋!`; } }