1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

Rock Snakes from the Snake Nest now keep their colors in other lands

This commit is contained in:
Zeno Rogue
2018-06-17 12:15:46 +02:00
parent 9e712ae8ea
commit 95a2f617cf
4 changed files with 7 additions and 6 deletions

View File

@@ -4613,7 +4613,7 @@ vector<cell*> hexdfs;
void moveHexSnake(cell *from, cell *c, int d, bool mounted) {
if(from->wall == waBoat) from->wall = waSea;
moveEffect(from, c, c->monst);
from->monst = c->monst; from->mondir = d;
from->monst = c->monst; from->mondir = d; from->hitpoints = c->hitpoints;
c->monst = moHexSnakeTail;
preventbarriers(from);