Skip to content

Commit

Permalink
chore: run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MhouneyLH committed Dec 8, 2022
1 parent 16520ef commit 44da0cd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/panel/pets/chicken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ import { States } from '../states';

export class Chicken extends BasePetType {
label = 'chicken';
static possibleColors = [
PetColor.white,
];
static possibleColors = [PetColor.white];
sequence = {
startingState: States.sitIdle,
sequenceStates: [
{
state: States.sitIdle,
possibleNextStates: [States.walkRight, States.runRight, States.swipe,],
possibleNextStates: [
States.walkRight,
States.runRight,
States.swipe,
],
},
{
state: States.walkRight,
Expand Down

0 comments on commit 44da0cd

Please sign in to comment.