From af9b867ca2befbfc900c3bf53209b1c478f4b30e Mon Sep 17 00:00:00 2001 From: ankush Date: Fri, 7 Oct 2022 14:59:28 +0530 Subject: [PATCH 1/2] added rock 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 af7b8351..9acfe914 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -990,7 +990,7 @@ export class Rocky extends BasePetType { } hello(): string { // TODO: #194 Add a custom message for rock - return ` says hello 👋!`; + return ` 👋 I'm rock! i always Rock`; } } From f7056cb9a18063a48c7d7c9e221ac409a215dc4a Mon Sep 17 00:00:00 2001 From: ankush Date: Fri, 7 Oct 2022 15:53:32 +0530 Subject: [PATCH 2/2] added rock message --- src/panel/pets.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/panel/pets.ts b/src/panel/pets.ts index 9acfe914..efdcc2ff 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -989,8 +989,7 @@ export class Rocky extends BasePetType { return false; } hello(): string { - // TODO: #194 Add a custom message for rock - return ` 👋 I'm rock! i always Rock`; + return ` 👋 I'm rock! I always Rock`; } }