From 9dabdcfba7f5d9dd432d7353b5dfbf49043194dc Mon Sep 17 00:00:00 2001 From: Barry Kane Date: Thu, 16 Feb 2023 23:15:02 +0000 Subject: [PATCH] Oops, wrong word. Changed "try" to "talk." --- src/gamelogic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamelogic.c b/src/gamelogic.c index 5743cee..1929ff8 100644 --- a/src/gamelogic.c +++ b/src/gamelogic.c @@ -301,7 +301,7 @@ int evaluateNextCommand(gameLogicParameters * parameters, queue * queue) talkMessage->senderName[0] = '\0'; // Temporary message until we can implement objects, events, and challenges. - strcpy(talkMessage->messageContent, "The try command is currently not implemented. Implement it if you want to use it.\n"); + strcpy(talkMessage->messageContent, "The talk command is currently not implemented. Implement it if you want to use it.\n"); // Allocate an outputMessage for the queue: outputMessage * talkOutputMessage = createTargetedOutputMessage(talkMessage, ¤tCommand->caller, 1);