1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-22 23:17:04 +00:00

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

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;