mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-18 23:10:26 +00:00
Merge pull request #273 from jruderman/vsnekcolor
Fix RRV snakes sometimes being colored like SN snakes
This commit is contained in:
commit
e61a69207a
@ -599,7 +599,7 @@ EX void wandering() {
|
|||||||
if (hrand(10) || peace::on)
|
if (hrand(10) || peace::on)
|
||||||
c->monst = moRedTroll;
|
c->monst = moRedTroll;
|
||||||
else if (!pseudohept(c))
|
else if (!pseudohept(c))
|
||||||
c->monst = moHexSnake;
|
c->monst = moHexSnake, c->hitpoints = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if(c->land == laCaves && wchance(items[itGold], 5))
|
else if(c->land == laCaves && wchance(items[itGold], 5))
|
||||||
|
Loading…
Reference in New Issue
Block a user