From 1c388e466aa0e3b0a6373823fe9bb95ad78dc1c8 Mon Sep 17 00:00:00 2001 From: Klisz Date: Sat, 13 May 2023 16:30:07 -0600 Subject: [PATCH] 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. --- js/creator-23.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/creator-23.js b/js/creator-23.js index db2bf296..0fdaf5f6 100644 --- a/js/creator-23.js +++ b/js/creator-23.js @@ -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']; }