diff --git a/commands/sp-games/mad-libs.js b/commands/sp-games/mad-libs.js index 4d1e3ce5..88540302 100644 --- a/commands/sp-games/mad-libs.js +++ b/commands/sp-games/mad-libs.js @@ -50,7 +50,7 @@ module.exports = class MadLibsCommand extends Command { this.client.games.delete(msg.channel.id); let finished = lib.text; for (let i = 0; i < choices.length; i++) { - finished = finished.replace(new RegExp(`{${i}}`, 'g'), `**${choices[i]}**`); + finished = finished.replace(new RegExp(`\\{${i}\\}`, 'g'), `**${choices[i]}**`); } return msg.say(finished); } catch (err) {