From bab81018a77f1cc5077b80495fca8f17266419fd Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Tue, 4 Jun 2024 10:10:27 +1000 Subject: [PATCH] Add another path from walk to run --- src/panel/pets/horse.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/panel/pets/horse.ts b/src/panel/pets/horse.ts index 260436d9..8c129917 100644 --- a/src/panel/pets/horse.ts +++ b/src/panel/pets/horse.ts @@ -80,10 +80,12 @@ export class Horse extends BasePetType { }, { state: States.walkRight, - // Can switch directions, start running the same direction, or start eating (twice as likely) + // Can switch directions, start running the same direction, or start eating (more likely) possibleNextStates: [ States.walkLeft, States.runRight, + States.runLeft, + States.standRight, States.standRight, States.standRight, ], @@ -99,10 +101,12 @@ export class Horse extends BasePetType { }, { state: States.walkLeft, - // Can switch directions, start running the same direciton, or start eating (twice as likely) + // Can switch directions, start running the same direciton, or start eating (more likely) possibleNextStates: [ States.walkRight, States.runLeft, + States.runRight, + States.standLeft, States.standLeft, States.standLeft, ],