From e3105ede1a5472f3f7968720a8997ac0e1e908d1 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 28 Sep 2024 22:39:35 +0100 Subject: Add missing newlines to clientcon messages Just had a brain fart when writing this code initially, woops. Just as well I have people pointing these things out to me before I end up making releases with such mistakes. At least, usually. :^) --- src/l4dwarp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/l4dwarp.c b/src/l4dwarp.c index 9c408db..b9e019d 100644 --- a/src/l4dwarp.c +++ b/src/l4dwarp.c @@ -118,7 +118,7 @@ DEF_CCMD_HERE_UNREG(sst_l4d_testwarp, "Simulate a bot warping to you " } void *e = ed->ent_unknown; if_cold (get_teamnum(e) != 2) { - clientcon_msg(ed, "error: must be in the Survivor team"); + clientcon_msg(ed, "error: must be in the Survivor team\n"); return; } filter.pass_ent = e; @@ -176,12 +176,12 @@ DEF_CCMD_HERE_UNREG(sst_l4d_previewwarp, "Visualise bot warp unstuck logic " return; } if (con_cmdclient != 0) { - clientcon_msg(ed, "error: only the server host can see visualisations"); + clientcon_msg(ed, "error: only the server host can see visualisations\n"); return; } void *e = ed->ent_unknown; if_cold (get_teamnum(e) != 2) { - clientcon_msg(ed, "error: must be in the Survivor team"); + clientcon_msg(ed, "error: must be in the Survivor team\n"); return; } filter.pass_ent = e; -- cgit v1.2.3-54-g00ecf