1
0
mirror of https://github.com/maride/barf.git synced 2025-07-11 21:46:44 +00:00

Fix crash if no win address is given

This commit is contained in:
maride 2021-06-17 17:20:12 +02:00
parent 783cd4c64b
commit 2b2e2dde62

@ -45,5 +45,6 @@ class BreakpointManager:
return score
def HitWin(self):
return self.winB.GetScore() != 0
if self.winB:
return self.winB.GetScore() != 0