-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbacklog.txt
More file actions
16 lines (12 loc) · 835 Bytes
/
backlog.txt
File metadata and controls
16 lines (12 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BUGS:
- Out of index error when attempting to parse an "s" cmd. Traceback:
File "C:\Users\Collin Sparks\Desktop\code\solitaire\src\userinterface.py", line 187, in main_loop
if self.current_input.is_valid:
File "C:\Users\Collin Sparks\Desktop\code\solitaire\src\userinterface.py", line 46, in is_valid
if cmd[0] == cmd[1]:
IndexError: string index out of range
- Fix how "." is handled; if GAME_LOGIC is enabled, it should find how many visible cards there are and move that many.
- Switch empty amt to mean "all visible" instead of "only one/top card"
- too short input crashes in _enact() with str index out of range error Ln40
ENHANCEMENTS:
- Stack methods should return Stacks instead of List[Card]. I'd like to remove Stack.contents references, unnecessarily complicated. See TODO on Forward References.