(dchr_ca, packing, empfile): Add packing symbol table.
(sect_ca, ship_ca, land_ca, plague_stages, empfile): Add plague stages symbol table. (treaty_ca, loan_ca, agreement_statuses, empfile): Add agreement status symbol table. Combine treatystatuses (TS_FREE, TS_SIGNED and TS_PENDING) and loan statuses (LS_FREE, LS_SIGNED and LS_PENDING) into a single agreement status. (pchr_ca, level, empfile): Add packing symbol table.
This commit is contained in:
parent
733f747a36
commit
555de3100c
7 changed files with 72 additions and 14 deletions
|
@ -173,6 +173,13 @@ struct empfile empfile[] = {
|
|||
PTR_CACHE(nation_flags, EFF_CFG)},
|
||||
{EF_NATION_RELATIONS, "nation relationships", NULL, symbol_ca,
|
||||
PTR_CACHE(nation_relations, EFF_CFG)},
|
||||
{EF_LEVEL, "level", NULL, symbol_ca, PTR_CACHE(level, EFF_CFG)},
|
||||
{EF_AGREEMENT_STATUS, "agreement status", NULL, symbol_ca,
|
||||
PTR_CACHE(agreement_statuses, EFF_CFG)},
|
||||
{EF_PLAGUE_STAGES, "plague stages", NULL, symbol_ca,
|
||||
PTR_CACHE(plague_stages, EFF_CFG)},
|
||||
{EF_PACKING, "packing", NULL, symbol_ca,
|
||||
PTR_CACHE(packing, EFF_CFG)},
|
||||
|
||||
/* Sentinel */
|
||||
{EF_BAD, NULL, NULL, NULL, 0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue