From 98c219e456fa07f8dddc94c0a65ad8efe507f4cb Mon Sep 17 00:00:00 2001 From: Matei Copot Date: Wed, 4 Dec 2019 17:49:26 +0100 Subject: [PATCH] changed debug contact from towc0 to yangwao --- commands/start.js | 2 +- modules/door.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/start.js b/commands/start.js index e60954b..5a12ec3 100644 --- a/commands/start.js +++ b/commands/start.js @@ -1,7 +1,7 @@ const getText = () => ` Welcome to PB's door bot! - If you don't have a token, contact @towc0 (Matei Copot) + If you don't have a token, contact @yangwao The token you chose is unique to you, which means that you are responsible for whatever that token is used for, so don't share it with anyone! diff --git a/modules/door.js b/modules/door.js index 8466990..31279d3 100644 --- a/modules/door.js +++ b/modules/door.js @@ -81,17 +81,17 @@ const friendlyUseActionFromToken = (action, token, { from }) => const response = {}; switch (answer) { case 'internal': - response.text = 'Something went wrong internally :/ Please contact @towc0'; + response.text = 'Something went wrong internally :/ Please contact @yangwao'; break; case 'invalid token': - response.text = 'Looks like your token is not valid :/ It might be a typo. If you can\'t remember it or don\'t think you have one, contact @towc0'; + response.text = 'Looks like your token is not valid :/ It might be a typo. If you can\'t remember it or don\'t think you have one, contact @yangwao'; response.markup = emptyKeyboard; break; case 'debounced': response.text = 'Someone is opening the door right now :) If it doesn\'t, try again in a couple of seconds'; break; default: - response.text = 'Some unknown error happened. Please tell @towc0 so he can figure it out'; + response.text = 'Some unknown error happened. Please tell @yangwao so he can figure it out'; log(`error-unknown: ${answer}`); }