From a90143e8d6b1d1c0e28264eff6db7235d93d43c7 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 6 May 2025 10:15:45 +0200 Subject: [PATCH] fixed the returning of tortoises while you have Flash/Storms --- pcmove.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcmove.cpp b/pcmove.cpp index 0723dea6..be1faa8b 100644 --- a/pcmove.cpp +++ b/pcmove.cpp @@ -1152,7 +1152,7 @@ bool pcmove::attack() { auto& c2 = mi.t; if(!fmsAttack) return false; - if(items[itOrbFlash] || items[itOrbLightning]) + if((items[itOrbFlash] || items[itOrbLightning]) && !good_tortoise) return false; attackflags = AF_NORMAL;