From 10fea51f1426487969442e6cd86b8d901d02ed9c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 12 May 2019 14:36:06 +0200 Subject: [PATCH] stricter conditions on start animations --- screenshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenshot.cpp b/screenshot.cpp index d153954e..859aa1fb 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -1202,7 +1202,7 @@ void fib_ghosts() { reaction_t current = null_animation; void pick() { - if(((gold() > 0 || tkills() > 0) && canmove) || geometry != gNormal || ISWEB || ISMOBILE) { + if(((gold() > 0 || tkills() > 0) && canmove) || geometry != gNormal || ISWEB || ISMOBILE || geom3::always3 || pmodel || rug::rugged) { current = null_animation; return; }