Update creator-23.js

Replace 'chosen color' as a text to detect for autoframe to use gold land frames with 'choose a color'; this catches everything 'chosen color' does but also catches Nykthos, Meteor Crater, and Rhystic Cave.
This commit is contained in:
Klisz
2023-05-13 16:30:07 -06:00
committed by GitHub
parent dcffc785bd
commit 1c388e466a

View File

@@ -775,7 +775,7 @@ function autoFrame() {
} }
} }
if (rules.includes('any color') || rules.includes('any one color') || rules.includes('chosen color') || rules.includes('any combination of colors')) { if (rules.includes('any color') || rules.includes('any one color') || rules.includes('choose a color') || rules.includes('any combination of colors')) {
colors = ['W', 'U', 'B', 'R', 'G']; colors = ['W', 'U', 'B', 'R', 'G'];
} }