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:
2
game.cpp
2
game.cpp
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user