From 446b23f83dc9d38fca567b2e10e06fa133bd0e26 Mon Sep 17 00:00:00 2001 From: Jacob Mandelson Date: Fri, 26 Aug 2022 08:46:32 -0700 Subject: [PATCH] Show a tame bomberbird in the Orb of Friendship. --- graph.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index 51d6ebf3..43f09001 100644 --- a/graph.cpp +++ b/graph.cpp @@ -1046,8 +1046,10 @@ EX bool drawItemType(eItem it, cell *c, const shiftmatrix& V, color_t icol, int if(xch == 'c') queuepolyat(Vit * spinptick(500, 0), cgi.shMoonDisk, darkena(0x801080, 0, hidden ? 0x20 : 0xC0), prio); - else - queuepolyat(Vit, cgi.shDisk, darkena(icol1, 0, inice ? 0x80 : hidden ? 0x20 : 0xC0), prio); + else { + auto shape = (it == itOrbFriend) ? cgi.shTinyBird : cgi.shDisk;; + queuepolyat(Vit, shape, darkena(icol1, 0, inice ? 0x80 : hidden ? 0x20 : 0xC0), prio); + } queue_ring(Vit * spinptick(1500, 0), orbshape(iinf[it].orbshape), col, prio); }