mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-08 23:20:12 +00:00
fixed the Kraken movement (kraken_pseudohept not used in one place)
This commit is contained in:
parent
935d519cbe
commit
081913fc4e
@ -2612,7 +2612,7 @@ namespace kraken {
|
|||||||
|
|
||||||
// c is the tentacle which will be the head after the move
|
// c is the tentacle which will be the head after the move
|
||||||
void trymove(cell *c) {
|
void trymove(cell *c) {
|
||||||
if(pseudohept(c)) return;
|
if(kraken_pseudohept(c)) return;
|
||||||
cell *c2 = c->mov[c->mondir];
|
cell *c2 = c->mov[c->mondir];
|
||||||
if(!isWatery(c)) return;
|
if(!isWatery(c)) return;
|
||||||
if(againstCurrent(c, c2)) return;
|
if(againstCurrent(c, c2)) return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user