From ca241c92fe1d35827a37b543799d35b2c24b0342 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 4 Mar 2019 17:56:49 +0100 Subject: [PATCH] 3d:: no more flying for 3D birds --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index a0549360..0722da07 100644 --- a/graph.cpp +++ b/graph.cpp @@ -547,7 +547,7 @@ transmatrix otherbodyparts(const transmatrix& V, color_t col, eMonster who, doub #define VAHEAD mmscale(V, geom3::AHEAD) #define VFISH V -#define VBIRD ((where && bird_disruption(where)) ? V : mmscale(V, geom3::BIRD + .05 * sintick(1000, (int) (size_t(where))/1000.))) +#define VBIRD ((DIM == 3 || (where && bird_disruption(where))) ? V : mmscale(V, geom3::BIRD + .05 * sintick(1000, (int) (size_t(where))/1000.))) #define VGHOST mmscale(V, geom3::GHOST) #define VSLIMEEYE mscale(V, geom3::FLATEYE)