enforce deck validator limit for Once More with Feeling (#11913)

This commit is contained in:
tiera3 2024-03-07 09:48:54 +10:00 committed by GitHub
parent f21deaf71c
commit b6d1e2a93b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,6 +34,7 @@ public abstract class DeckValidator implements Serializable {
maxCopiesMap.put("Persistent Petitioners", Integer.MAX_VALUE);
maxCopiesMap.put("Dragon's Approach", Integer.MAX_VALUE);
maxCopiesMap.put("Slime Against Humanity", Integer.MAX_VALUE);
maxCopiesMap.put("Once More with Feeling", 1);
maxCopiesMap.put("Seven Dwarves", 7);
maxCopiesMap.put("Nazgul", 9);
}