From f97f76d9e526f9cf6b85d77ff64a4c89df864772 Mon Sep 17 00:00:00 2001
From: Markus Uhlin <markus@nifty-networks.net>
Date: Sat, 30 Mar 2024 13:10:02 +0100
Subject: Reformatted com_draw()

---
 FICS/gameproc.c | 61 +++++++++++++++++++++++++++++++--------------------------
 1 file changed, 33 insertions(+), 28 deletions(-)

diff --git a/FICS/gameproc.c b/FICS/gameproc.c
index 1a2344c..38c7849 100644
--- a/FICS/gameproc.c
+++ b/FICS/gameproc.c
@@ -783,36 +783,41 @@ int CheckRepetition (int p, int g)
   else return 0;
 }
 
-PUBLIC int com_draw(int p, param_list param)
+PUBLIC int
+com_draw(int p, param_list param)
 {
-  int p1, g = parray[p].game;
+	int p1, g = parray[p].game;
 
-  ASSERT(param[0].type == TYPE_NULL);
-  if (!pIsPlaying(p)) {
-    return COM_OK;
-  }
-  if (Check50MoveRule (p, g) || CheckRepetition(p, g)) {
-    return COM_OK;
-  }
-  p1 = parray[p].opponent;
-  if (parray[p1].simul_info.numBoards &&
-      parray[p1].simul_info.boards[parray[p1].simul_info.onBoard] !=
-      g) {
-    pprintf(p, "You can only make requests when the simul player is at your board.\n");
-    return COM_OK;
-  }
-  if (player_find_pendfrom(p, parray[p].opponent, PEND_DRAW) >= 0) {
-    player_remove_request(parray[p].opponent, p, PEND_DRAW);
-    player_decline_offers(p, -1, -1);
-    game_ended(g, (garray[g].white == p) ? BLACK : WHITE, END_AGREEDDRAW);
-  } else {
-    pprintf(parray[p].opponent, "\n");
-    pprintf_highlight(parray[p].opponent, "%s", parray[p].name);
-    pprintf_prompt(parray[p].opponent, " offers you a draw.\n");
-    pprintf(p, "Draw request sent.\n");
-    player_add_request(p, parray[p].opponent, PEND_DRAW, 0);
-  }
-  return COM_OK;
+	ASSERT(param[0].type == TYPE_NULL);
+
+	if (!pIsPlaying(p))
+		return COM_OK;
+	if (Check50MoveRule(p, g) || CheckRepetition(p, g))
+		return COM_OK;
+
+	p1 = parray[p].opponent;
+
+	if (parray[p1].simul_info.numBoards &&
+	    parray[p1].simul_info.boards[parray[p1].simul_info.onBoard] != g) {
+		pprintf(p, "You can only make requests when the simul player "
+		    "is at your board.\n");
+		return COM_OK;
+	}
+
+	if (player_find_pendfrom(p, parray[p].opponent, PEND_DRAW) >= 0) {
+		player_remove_request(parray[p].opponent, p, PEND_DRAW);
+		player_decline_offers(p, -1, -1);
+		game_ended(g, (garray[g].white == p ? BLACK : WHITE),
+		    END_AGREEDDRAW);
+	} else {
+		pprintf(parray[p].opponent, "\n");
+		pprintf_highlight(parray[p].opponent, "%s", parray[p].name);
+		pprintf_prompt(parray[p].opponent, " offers you a draw.\n");
+		pprintf(p, "Draw request sent.\n");
+		player_add_request(p, parray[p].opponent, PEND_DRAW, 0);
+	}
+
+	return COM_OK;
 }
 
 PUBLIC int
-- 
cgit v1.2.3