From 0a80de8a82f2541e54895f228809faf89aa1a65d Mon Sep 17 00:00:00 2001 From: Alan Walton Date: Sat, 7 Nov 2020 10:58:29 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdcb7f6..9257c9b 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Prepended to the start of the other three scripts before execution so that you c ### Input Modifier Called each time the player gives an input and has the opportunity to modify that input. When inside of an Input Modifier, -you can return `stop: true` in order to stop processing——see [examples/commandParser.js](examples/commandParser.js). +you can return `stop: true` in order to stop processing——see [examples/commandParser.js](examples/commandParser.js). Setting `stop: true` is important to make sure that you only spend energy for users when you need to. ### Context Modifier Called each time the AI model is about to receive input and has the opportunity to modify that input (by up to a 75% [edit distance](https://en.wikipedia.org/wiki/Levenshtein_distance) change).