fix bad condition

This commit is contained in:
Kistaro Windrider 2024-02-05 18:41:32 -08:00
parent 2347ad523b
commit b70e8d38de
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -127,7 +127,7 @@ func mightBeFucked(f fuckness) bool {
if i == 1 && j == 1 { if i == 1 && j == 1 {
continue continue
} }
if f[i][j] == NotFucked { if f[i][j] != NotFucked {
return true return true
} }
} }