fixed the Kraken movement (kraken_pseudohept not used in one place)

This commit is contained in:
Zeno Rogue 2018-05-08 01:59:29 +02:00
parent 935d519cbe
commit 081913fc4e
1 changed files with 1 additions and 1 deletions

View File

@ -2612,7 +2612,7 @@ namespace kraken {
// c is the tentacle which will be the head after the move
void trymove(cell *c) {
if(pseudohept(c)) return;
if(kraken_pseudohept(c)) return;
cell *c2 = c->mov[c->mondir];
if(!isWatery(c)) return;
if(againstCurrent(c, c2)) return;