Skip to content

Commit

Permalink
Update CaseRule.java
Browse files Browse the repository at this point in the history
  • Loading branch information
charlestian23 authored Mar 26, 2024
1 parent 62132c3 commit 56ee4b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/rpi/legup/model/rules/CaseRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public CaseRule(String ruleID, String ruleName, String description, String image
this.ruleType = CASE;
this.INVALID_USE_MESSAGE = "Invalid use of the case rule " + this.ruleName;
this.MAX_CASES = 10;
this.MIN_CASES = 0; // By default, this will not actually have any effect
this.MIN_CASES = 1; // By default, this will not actually have any effect
}

/**
Expand Down

0 comments on commit 56ee4b3

Please sign in to comment.