From c6025ad711b0bc73ea5d90db32e5e7ef7379ffa0 Mon Sep 17 00:00:00 2001 From: ? Date: Tue, 26 Feb 2019 12:25:54 +0100 Subject: [PATCH] 3D:: do not draw the player in turn-based either --- graph.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index cf2bbe94..698d7271 100644 --- a/graph.cpp +++ b/graph.cpp @@ -2266,7 +2266,11 @@ bool drawMonster(const transmatrix& Vparam, int ct, cell *c, color_t col) { drawPlayerEffects(Vs, c, true); if(!mmmon) return true; - if(isWorm(m)) { + if(DIM == 3 && playermoved && vid.sspeed > -5 && vid.yshift == 0) { + /* FPP -- do not draw the player */ + } + + else if(isWorm(m)) { ld depth = geom3::factor_to_lev(wormhead(c) == c ? geom3::AHEAD : geom3::ABODY); footphase = 0; int q = ptds.size();