From 202a78be0c13e7582efd9613f57a9aa109ea20e0 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 17 Jun 2017 03:37:16 +0000 Subject: [PATCH] Remove some --- commands/games/rock-paper-scissors.js | 2 +- commands/moderation/lockdown.js | 4 ++-- commands/num-edit/temperature.js | 4 ++-- commands/random-res/name.js | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/commands/games/rock-paper-scissors.js b/commands/games/rock-paper-scissors.js index 8dbf2959..a3f6eae2 100644 --- a/commands/games/rock-paper-scissors.js +++ b/commands/games/rock-paper-scissors.js @@ -12,7 +12,7 @@ module.exports = class RockPaperScissorsCommand extends Command { args: [ { key: 'choice', - prompt: '`Rock`, `Paper`, or `Scissors`?', + prompt: 'Rock, Paper, or Scissors?', type: 'string', parse: (choice) => choice.toLowerCase() } diff --git a/commands/moderation/lockdown.js b/commands/moderation/lockdown.js index 5779e3e5..2fe94a96 100644 --- a/commands/moderation/lockdown.js +++ b/commands/moderation/lockdown.js @@ -14,12 +14,12 @@ module.exports = class LockdownCommand extends Command { args: [ { key: 'type', - prompt: 'Please enter either `start` or `stop`.', + prompt: 'Please enter either start or stop.', type: 'string', default: 'start', validate: (type) => { if (['start', 'stop'].includes(type.toLowerCase())) return true; - else return 'Please enter either `start` or `stop`.'; + else return 'Please enter either start or stop.'; }, parse: (type) => type.toLowerCase() } diff --git a/commands/num-edit/temperature.js b/commands/num-edit/temperature.js index 4b2f73f6..702333a2 100644 --- a/commands/num-edit/temperature.js +++ b/commands/num-edit/temperature.js @@ -14,7 +14,7 @@ module.exports = class TemperatureCommand extends Command { type: 'string', validate: (base) => { if (['celsius', 'fahrenheit', 'kelvin'].includes(base.toLowerCase())) return true; - else return 'Please enter either `celsius`, `fahrenheit`, or `kelvin`.'; + else return 'Please enter either celsius, fahrenheit, or kelvin.'; }, parse: (base) => base.toLowerCase() }, @@ -24,7 +24,7 @@ module.exports = class TemperatureCommand extends Command { type: 'string', validate: (to) => { if (['celsius', 'fahrenheit', 'kelvin'].includes(to.toLowerCase())) return true; - else return 'Please enter either `celsius`, `fahrenheit`, or `kelvin`.'; + else return 'Please enter either celsius, fahrenheit, or kelvin.'; }, parse: (to) => to.toLowerCase() }, diff --git a/commands/random-res/name.js b/commands/random-res/name.js index 86e6e201..0552a518 100644 --- a/commands/random-res/name.js +++ b/commands/random-res/name.js @@ -16,7 +16,7 @@ module.exports = class RandomNameCommand extends Command { default: 'both', validate: (gender) => { if (['male', 'female', 'both'].includes(gender.toLowerCase())) return true; - else return 'Please enter either `male`, `female`, or `both`.'; + else return 'Please enter either male, female, or both.'; }, parse: (gender) => gender.toLowerCase() }