From aed68125ae6a264e0eb42c0c5623a91c93ae27c0 Mon Sep 17 00:00:00 2001 From: Zachary Cowan <44091329+zacowan@users.noreply.github.com> Date: Mon, 6 Dec 2021 11:53:27 -0500 Subject: [PATCH] fix(responses): updated responses --- andy_api/api/intent_processing/move_piece.py | 2 +- andy_api/api/intent_processing/restart_game_no.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/andy_api/api/intent_processing/move_piece.py b/andy_api/api/intent_processing/move_piece.py index ad472b2..0ac3948 100644 --- a/andy_api/api/intent_processing/move_piece.py +++ b/andy_api/api/intent_processing/move_piece.py @@ -49,7 +49,7 @@ ] ILLEGAL_MOVE_ERROR_RESPONSES = [ - "Actually, that move would be against the rules, so you can't do it.", + "Actually, that would be against the rules, so you can't do it.", "Oh, that's an illegal move. Could you give me a different one?" ] diff --git a/andy_api/api/intent_processing/restart_game_no.py b/andy_api/api/intent_processing/restart_game_no.py index f839743..da0ae4c 100644 --- a/andy_api/api/intent_processing/restart_game_no.py +++ b/andy_api/api/intent_processing/restart_game_no.py @@ -6,7 +6,7 @@ HAPPY_PATH_RESPONSES = [ "Okay - let's continue playing then.", - "Okay - let's finish this round then." + "Okay - let's finish this game then." ]