From c61b556730618f7ee9c2f1b70e7138f563376a93 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 30 Jul 2019 13:00:02 +0200 Subject: [PATCH] fixed pushing thumpers in sol --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index afe54941..5db4fa99 100644 --- a/game.cpp +++ b/game.cpp @@ -4154,7 +4154,7 @@ cell *determinePush(cellwalker who, cell *c2, int subdir, const T& valid, int& p } cellwalker push = who; push += wstep; - if(WDIM == 3 && binarytiling) { + if(WDIM == 3 && binarytiling && !sol) { for(int a=0; a<4; a++) { if(push.spin < 4) push.spin = 8; else if(push.spin >= 8) push.spin = a;