Skip to content

Commit c5b367f

Browse files
committed
Fix lockblocks/chests double-playing locked strings
1 parent 2d5e123 commit c5b367f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zc/hero.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20791,7 +20791,7 @@ void HeroClass::checkchest(int32_t type)
2079120791
return; //Button not pressed
2079220792
}
2079320793
}
20794-
else if(pushing < 8) return; //Not pushing against chest enough
20794+
else if(pushing < 8 || pushing % 8) return; //Not pushing against chest enough
2079520795

2079620796
if(ischest)
2079720797
{

0 commit comments

Comments
 (0)