removed not from validation
This commit is contained in:
parent
089b588450
commit
0433665878
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class Piece:
|
||||||
validated_jumps = []
|
validated_jumps = []
|
||||||
|
|
||||||
for jump in valid_jumps:
|
for jump in valid_jumps:
|
||||||
if not self.hive_integrity_check(board):
|
if self.hive_integrity_check(board):
|
||||||
validated_jumps.append(jump)
|
validated_jumps.append(jump)
|
||||||
return validated_jumps
|
return validated_jumps
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue