Feature #1510 ยป 0022-Drop-empty-stdinhand_turn.patch
| server/srv_main.c | ||
|---|---|---|
|
update_diplomatics();
|
||
|
make_history_report();
|
||
|
settings_turn();
|
||
|
stdinhand_turn();
|
||
|
voting_turn();
|
||
|
send_city_turn_notifications(nullptr);
|
||
| server/stdinhand.c | ||
|---|---|---|
|
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.
|
||
|
**************************************************************************/
|
||
| server/stdinhand.h | ||
|---|---|---|
|
#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,
|
||