-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Description
This check needs to be changed to allow the maximum number of levels for SELL side to reach the full size of the grid because it less than GRID_LEVELS, but to allow this change more code changes are needed.
Line 37 in 8383887
| if 0 <= level < GRID_LEVELS and (grid[level] == "" or grid[level] == "-"): |
This line has to be changed to grid = ["-"] * (GRID_LEVELS+1)
Line 123 in 8383887
| grid = ["-"] * GRID_LEVELS |
This line has to be changed to for n in range(last_level + 1, GRID_LEVELS+1):
Line 166 in 8383887
| for n in range(last_level + 1, GRID_LEVELS): |
Metadata
Metadata
Assignees
Labels
No labels