1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 17:40:36 +00:00

brownian:: acidgull uses normal bird

This commit is contained in:
Zeno Rogue 2019-01-03 17:21:24 +01:00
parent 0adfaa55df
commit 275c5d568a

View File

@ -1252,11 +1252,11 @@ bool drawMonsterType(eMonster m, cell *where, const transmatrix& V, color_t col,
queuepoly(VFISH, shShark, darkena(col, 0, 0xFF)); queuepoly(VFISH, shShark, darkena(col, 0, 0xFF));
else if(m == moEagle || m == moParrot || m == moBomberbird || m == moAlbatross || else if(m == moEagle || m == moParrot || m == moBomberbird || m == moAlbatross ||
m == moTameBomberbird || m == moWindCrow || m == moTameBomberbirdMoved || m == moTameBomberbird || m == moWindCrow || m == moTameBomberbirdMoved ||
m == moSandBird) { m == moSandBird || m == moAcidBird) {
ShadowV(V, shEagle); ShadowV(V, shEagle);
queuepoly(VBIRD, shEagle, darkena(col, 0, 0xFF)); queuepoly(VBIRD, shEagle, darkena(col, 0, 0xFF));
} }
else if(among(m, moSparrowhawk, moWestHawk, moAcidBird)) { else if(among(m, moSparrowhawk, moWestHawk)) {
ShadowV(V, shHawk); ShadowV(V, shHawk);
queuepoly(VBIRD, shHawk, darkena(col, 0, 0xFF)); queuepoly(VBIRD, shHawk, darkena(col, 0, 0xFF));
} }