removed not from validation

This commit is contained in:
Ulysia 2024-01-05 18:57:42 +01:00 committed by GitHub
parent 089b588450
commit 0433665878
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ class Piece:
validated_jumps = []
for jump in valid_jumps:
if not self.hive_integrity_check(board):
if self.hive_integrity_check(board):
validated_jumps.append(jump)
return validated_jumps