fix inverted SchedBuried and UserBuried in cards.ts

This wasn't causing any problems, as we only ever checked for both at
once.
This commit is contained in:
Damien Elmes 2021-12-18 14:26:39 +10:00
parent 3e0c9dc866
commit e175c068af

View File

@ -21,6 +21,6 @@ export enum CardQueue {
PreviewRepeat = 4,
/// cards are not due in these states
Suspended = -1,
UserBuried = -2,
SchedBuried = -3,
SchedBuried = -2,
UserBuried = -3,
}