From 233bfbfda76ff96012fbfa1f9bcd3972929d6b2a Mon Sep 17 00:00:00 2001 From: Charlie Kobayashi Date: Sun, 1 Oct 2017 23:46:36 -0400 Subject: [PATCH] Scavengers: Remove the temporary warning on commas (#4032) --- chat-plugins/scavengers.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/chat-plugins/scavengers.js b/chat-plugins/scavengers.js index 0002dc48dd..6e963fb44c 100644 --- a/chat-plugins/scavengers.js +++ b/chat-plugins/scavengers.js @@ -557,10 +557,6 @@ class ScavengerHunt extends Rooms.RoomGame { for (let i = 0; i < questionArray.length; i++) { if (i % 2) { - // This check will likely be removed within a week or so, as having access to a comma - // in an answer is actually fairly useful and actually a reason why a separator was changed to - // a semicolon. It's just here to give time for people to get used to that change. - if (questionArray[i].includes(',')) return {err: "Commas are no longer correct syntax for separating answers - please use semicolons instead."}; questionArray[i] = questionArray[i].split(';').map(p => p.trim()); if (!questionArray[i].length || questionArray[i].some(a => !toId(a))) return {err: "Empty answer - only alphanumeric characters will count in answers."}; } else {