(ship_chr_flags[]): Remove internal flags (M_XLIGHT, M_NCHOPPERS)

from ship_chr_flags[] so they do not appear in the show output.

(missions[]): Add MI_NONE to missions[] table.
This commit is contained in:
Ron Koenderink 2005-11-30 18:57:53 +00:00
parent ea1e3b6090
commit 0511565c11
2 changed files with 2 additions and 2 deletions

View file

@ -36,6 +36,7 @@
#include "queue.h"
#define MI_NONE 0
#define MI_INTERDICT 1
#define MI_SUPPORT 2
#define MI_RESERVE 3

View file

@ -565,8 +565,6 @@ struct symbol ship_chr_flags[] = {
{M_SUBT, "sub-torp"},
{M_TRADE, "trade"},
{M_SEMILAND, "semi-land"},
{M_XLIGHT, "xlight"},
{M_CHOPPER, "chopper"},
{M_OILER, "oiler"},
{M_SUPPLY, "supply"},
{M_ANTIMISSILE, "anti-missile"},
@ -657,6 +655,7 @@ struct symbol meta_type[] = {
};
struct symbol missions[] = {
{MI_NONE, "none"},
{MI_INTERDICT, "interdiction"},
{MI_SUPPORT, "support"},
{MI_RESERVE, "reserve"},