Skip to content

Commit

Permalink
remove id strings in pet classes
Browse files Browse the repository at this point in the history
  • Loading branch information
rlszabo committed Apr 5, 2023
1 parent 7963ca1 commit c5ef657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/panel/pets/chicken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class Chicken extends BasePetType {
return '🐔';
}
get hello(): string {
return ` Puk Puk Pukaaak - just let me lay my egg. 🥚\nMY ID IS::: ${this.id}`;
return ` Puk Puk Pukaaak - just let me lay my egg. 🥚`;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/panel/pets/fox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class Fox extends BasePetType {
return '🦊';
}
get hello(): string {
return `fox says hello\nMY ID IS::: ${this.id}`;
return `fox says hello`;
}
}

Expand Down

0 comments on commit c5ef657

Please sign in to comment.