p108 - These damn small blinds... all previously supported tourneys should be working again now
This commit is contained in:
parent
b549aa2605
commit
622a00be96
|
@ -1045,6 +1045,9 @@ def recogniseGametypeID(cursor, topline, smallBlindLine, site_id, category, isTo
|
||||||
if base=="hold":
|
if base=="hold":
|
||||||
if smallBlindLine==topline:
|
if smallBlindLine==topline:
|
||||||
raise FpdbError("invalid small blind line")
|
raise FpdbError("invalid small blind line")
|
||||||
|
elif isTourney:
|
||||||
|
pos=smallBlindLine.rfind(" ")+1
|
||||||
|
small_blind=int(smallBlindLine[pos:])
|
||||||
else:
|
else:
|
||||||
pos=smallBlindLine.rfind("$")+1
|
pos=smallBlindLine.rfind("$")+1
|
||||||
small_blind=float2int(smallBlindLine[pos:])
|
small_blind=float2int(smallBlindLine[pos:])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user