Skip to content

Commit

Permalink
don't count free space for bingo spots number
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Mar 23, 2023
1 parent 458b7ad commit 79bb39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dxlog/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def log_beatgame(cursor, log_id, mod, version, e, d):
for y in range(0,5):
bingoTag = "bingo-"+str(x)+"-"+str(y)
square = e.get(bingoTag)
if square and square['progress'] >= square['max']:
if square and square['progress'] >= square['max'] and square['event'] != "Free Space":
bingo_spots += 1

cursor.execute(
Expand Down

0 comments on commit 79bb39f

Please sign in to comment.