diff --git a/rslib/src/sched/new.rs b/rslib/src/sched/new.rs index 4043fb1b1..b19b9eacf 100644 --- a/rslib/src/sched/new.rs +++ b/rslib/src/sched/new.rs @@ -4,7 +4,6 @@ use crate::{ card::{Card, CardID, CardQueue, CardType}, collection::Collection, - deckconf::INITIAL_EASE_FACTOR_THOUSANDS, decks::DeckID, err::Result, notes::NoteID, @@ -21,11 +20,7 @@ impl Card { self.ctype = CardType::New; self.queue = CardQueue::New; self.interval = 0; - if self.ease_factor == 0 { - // unlike the old Python code, we leave the ease factor alone - // if it's already set - self.ease_factor = INITIAL_EASE_FACTOR_THOUSANDS; - } + self.ease_factor = 0; } /// If the card is new, change its position.