diff --git a/custom-plugins/panagrams.js b/custom-plugins/panagrams.js index 76c87b8cf..2a09459fd 100644 --- a/custom-plugins/panagrams.js +++ b/custom-plugins/panagrams.js @@ -38,7 +38,7 @@ class Panagram { } while (this.mixed === toId(this.answer.species)); this.room.add( - `|html|
A game of Panagram was started! Scrambled Pokemon: ${this.mixed}
(Remaining Sessions: ${this.sessions})
` + + `|html|
A game of Panagram was started! Scrambled Pokemon: ${this.mixed}
(Remaining Sessions: ${this.sessions})
` + `Use /gp [pokemon] to guess!
` ); this.guessed = {}; @@ -103,7 +103,7 @@ exports.commands = { panagram: function (target, room, user, connection, cmd) { if (pGames[room.id]) return this.errorReply("There is currently a game of panagram going on in this room."); if (!this.can('declare', null, room)) return this.errorReply("You must be ranked # or higher to start a game of panagram in this room."); - if (room.id !== 'gamingclub') return this.sendReply('|html|You can only start a game of Panagram in the '); + if (room.id !== 'gamingclub') return this.sendReply('|html|You can only start a game of Panagram in the '); if (!target || isNaN(target)) return this.errorReply("Usage: /panagram [number of sessions]"); if (target < 20) return this.errorReply("The minimum number of sessions you can have at a time is 20."); if (~target.indexOf('.')) return this.errorReply("The number of sessions cannot be a decimal value.");