From 4b610ba3f1965c9fe6f7d709ff0d695ca11fda97 Mon Sep 17 00:00:00 2001 From: Kip Raske Date: Tue, 5 Dec 2017 14:06:35 -0600 Subject: [PATCH] Fixing the pig flying too high in the stable square bug (#9592) The `.FlyingPig` css class necessary to re-center the pig in its square is no longer applied when the square is greyed out. So I am adding that to the greyed out square. It seems to not have any affect on the other pets. --- website/client/components/inventory/stable/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/components/inventory/stable/index.vue b/website/client/components/inventory/stable/index.vue index f645c4cc72..998abe3946 100644 --- a/website/client/components/inventory/stable/index.vue +++ b/website/client/components/inventory/stable/index.vue @@ -867,7 +867,7 @@ } if (pet.mountOwned()) { - return `GreyedOut Pet Pet-${pet.key}`; + return `GreyedOut Pet Pet-${pet.key} ${pet.eggKey}`; } if (pet.isHatchable()) {