From 093bfd9be04f5a1b0239e490a0c1710c30566394 Mon Sep 17 00:00:00 2001 From: Craftyawesome Date: Thu, 23 Jan 2025 15:59:48 -0500 Subject: [PATCH] use a signed type for NodeToSplitPlayer --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index c3c54ea99..953a3e1d7 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -4765,7 +4765,7 @@ static void PT_Say(int node) DoSayCommand(say.message, say.target, say.flags, say.source); } -static char NodeToSplitPlayer(int node, int split) +static int8_t NodeToSplitPlayer(int node, int split) { if (split == 0) return nodetoplayer[node];