From 59db98a605e2d5051231957cff6bb29e3495b39e Mon Sep 17 00:00:00 2001
From: Harry Young <hendrik.gerritzen@googlemail.com>
Date: Fri, 2 Nov 2012 23:01:11 +0100
Subject: [PATCH] minor fix

Signed-off-by: Harry Young <hendrik.gerritzen@googlemail.com>
---
 code/game/g_cmds.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/game/g_cmds.c b/code/game/g_cmds.c
index 1b64613..30f6fde 100644
--- a/code/game/g_cmds.c
+++ b/code/game/g_cmds.c
@@ -6293,7 +6293,7 @@ static void Cmd_safezonelist_f(gentity_t *ent) {
 	}
 	#endif
 
-	trap_SendServerCommand( ent-g_entities, va("print \"List of safezones on this map: \n\n\""));
+	trap_SendServerCommand( ent-g_entities, va("print \"\nList of safezones on this map: \n\n\""));
 	while((safezone = G_Find(safezone, FOFS(classname), "target_safezone")) != NULL){
 		trap_SendServerCommand( ent-g_entities, va("print \"Name of safezone: %s \n\"", safezone->targetname ));
 		if(safezone->count == 1)
@@ -6303,7 +6303,7 @@ static void Cmd_safezonelist_f(gentity_t *ent) {
 		if(safezone->spawnflags & 2)
 			trap_SendServerCommand( ent-g_entities, va("print \"Flagges as ship: yes \n\n\""));
 		else
-			trap_SendServerCommand( ent-g_entities, va("print \"flagges as ship: no \n\n\""));
+			trap_SendServerCommand( ent-g_entities, va("print \"Flagged as ship: no \n\n\""));
 	}
 	trap_SendServerCommand( ent-g_entities, va("print \"End of list \n\n\""));
 }