summaryrefslogtreecommitdiff
path: root/src/move.c
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2022-01-22 14:22:21 -0500
committerRobby Zambito <contact@robbyzambito.me>2022-01-22 14:22:21 -0500
commita13ec7ae35953d852afa1ce7a1761f76ea8e4b36 (patch)
tree41da837eabcdef6a6302df894ae0920d7c00a5d6 /src/move.c
parent992e39ccc4b00a42e348dd7ef9acf6f04ed00e7c (diff)
Removed unused command from help output
Diffstat (limited to 'src/move.c')
-rw-r--r--src/move.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/move.c b/src/move.c
index 269b1fc..e4ac68e 100644
--- a/src/move.c
+++ b/src/move.c
@@ -33,13 +33,7 @@
static void print_help() {
puts("To enter a move, enter the two row and column seperated by spaces.\n"
"For example `0 0` will select the top left corner.\n\n"
- "p - Print the board again\n"
- "g - Drop into a guile repl\n"
- "\n"
- "In the guile repl you can define an AI to use for the current"
- "player.\n"
- "After you define an AI for that player, it will be used for the rest "
- "of the game instead of prompting for input for that user.\n");
+ "p - Print the board again\n");
}
static char *prompt_player(enum player_color current_player) {