mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-03-20 01:21:28 +00:00
minor fix
Signed-off-by: Harry Young <hendrik.gerritzen@googlemail.com>
This commit is contained in:
parent
17484683ab
commit
59db98a605
1 changed files with 2 additions and 2 deletions
|
@ -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\""));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue