1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-11 11:13:01 +00:00

newlands:: some theming

This commit is contained in:
Zeno Rogue
2018-12-25 12:51:42 +01:00
parent dda147c173
commit bc27e10dc9
2 changed files with 9 additions and 9 deletions

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));
else if(m == moEagle || m == moParrot || m == moBomberbird || m == moAlbatross ||
m == moTameBomberbird || m == moWindCrow || m == moTameBomberbirdMoved ||
m == moSandBird || m == moAcidBird) {
m == moSandBird) {
ShadowV(V, shEagle);
queuepoly(VBIRD, shEagle, darkena(col, 0, 0xFF));
}
else if(m == moSparrowhawk || m == moWestHawk) {
else if(among(m, moSparrowhawk, moWestHawk, moAcidBird)) {
ShadowV(V, shHawk);
queuepoly(VBIRD, shHawk, darkena(col, 0, 0xFF));
}