mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-05 10:17:03 +00:00
fixed a Snake-related bug
This commit is contained in:
parent
9c8b16e9d0
commit
6acd227e27
5
game.cpp
5
game.cpp
@ -4558,7 +4558,10 @@ int inpair(cell *c, int colorpair) {
|
||||
}
|
||||
|
||||
int snake_pair(cell *c) {
|
||||
return (1 << pattern_threecolor(c)) | (1 << pattern_threecolor(c->mov[c->mondir]));
|
||||
if(c->mondir == NODIR)
|
||||
return (1 << pattern_threecolor(c));
|
||||
else
|
||||
return (1 << pattern_threecolor(c)) | (1 << pattern_threecolor(c->mov[c->mondir]));
|
||||
}
|
||||
|
||||
// note: move from 'c' to 'from'!
|
||||
|
Loading…
x
Reference in New Issue
Block a user