From 8efc92143b0b7895dddb8fbacfeec196985940b3 Mon Sep 17 00:00:00 2001
From: Marko Lindqvist <cazfi74@gmail.com>
Date: Sun, 2 Nov 2025 22:49:23 +0200
Subject: [PATCH 22/22] Drop empty stdinhand_turn()

See RM #1510

Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
 server/srv_main.c  | 1 -
 server/stdinhand.c | 9 ---------
 server/stdinhand.h | 1 -
 3 files changed, 11 deletions(-)

diff --git a/server/srv_main.c b/server/srv_main.c
index 0ac7b51ec3..c74783b66a 100644
--- a/server/srv_main.c
+++ b/server/srv_main.c
@@ -1806,7 +1806,6 @@ static void end_turn(void)
   update_diplomatics();
   make_history_report();
   settings_turn();
-  stdinhand_turn();
   voting_turn();
   send_city_turn_notifications(nullptr);
 
diff --git a/server/stdinhand.c b/server/stdinhand.c
index a1e1153b1a..93d6b7e426 100644
--- a/server/stdinhand.c
+++ b/server/stdinhand.c
@@ -249,15 +249,6 @@ void stdinhand_init(void)
   kick_table_by_user = kick_hash_new();
 }
 
-/**********************************************************************//**
-  Update stuff every turn that is related to this code module. Run this
-  on turn end.
-**************************************************************************/
-void stdinhand_turn(void)
-{
-  /* Nothing at the moment. */
-}
-
 /**********************************************************************//**
   Deinitialize stuff related to this code module.
 **************************************************************************/
diff --git a/server/stdinhand.h b/server/stdinhand.h
index 7d773c262c..5148828a66 100644
--- a/server/stdinhand.h
+++ b/server/stdinhand.h
@@ -23,7 +23,6 @@
 #include "console.h"
 
 void stdinhand_init(void);
-void stdinhand_turn(void);
 void stdinhand_free(void);
 
 void cmd_reply(enum command_id cmd, struct connection *caller,
-- 
2.51.0

