Skip to content

Commit

Permalink
Merge pull request #101 from jxofficial/branch-timer
Browse files Browse the repository at this point in the history
Resolve bug in ArcadeMode
  • Loading branch information
ShaunNgTX committed Oct 31, 2019
2 parents e0ebce6 + 08136bb commit e87639b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,5 @@ public CommandResult execute(Model model) throws ParseException {

return new CommandResult().withFeedBack(String.format(Messages.MESSAGE_ANSWERABLES_LISTED_OVERVIEW,
model.getFilteredAnswerableList().size())).withStart(true).withMode(mode).build();

}
}
1 change: 1 addition & 0 deletions src/main/java/seedu/revision/model/quiz/ArcadeMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class ArcadeMode extends Mode {
public ArcadeMode() {
super("arcade");
this.time = 20;
this.combinedPredicate = NormalMode.NORMAL_MODE_PREDICATE;
}

public int getLevelTwoTime() {
Expand Down

0 comments on commit e87639b

Please sign in to comment.