1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

fixed knight cloaks and tortoises

This commit is contained in:
Zeno Rogue 2019-03-24 01:27:05 +01:00
parent c5284c153d
commit bd396d4979

View File

@ -1061,10 +1061,10 @@ bool drawMonsterType(eMonster m, cell *where, const transmatrix& V, color_t col,
}
if(knighted)
queuepoly(VBS, shKnightCloak, darkena(cloakcolor(knighted), 1, 0xFF));
queuepoly(VBODY * VBS, shKnightCloak, darkena(cloakcolor(knighted), 1, 0xFF));
if(tortoise::seek())
tortoise::draw(VBS * ypush(-crossf*.25), tortoise::seekbits, 4, 0);
tortoise::draw(VBODY * VBS * ypush(-crossf*.25), tortoise::seekbits, 4, 0);
}