From 081913fc4eae2e51d6bb27e6f37f2c51b8150ea3 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 8 May 2018 01:59:29 +0200 Subject: [PATCH] fixed the Kraken movement (kraken_pseudohept not used in one place) --- complex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complex.cpp b/complex.cpp index 7f931660..2fe5aa8b 100644 --- a/complex.cpp +++ b/complex.cpp @@ -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;