From 3f96090ac50ef7dc176a9b32eb3c39f45d3dc9d3 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 17 Feb 2006 18:04:07 +0000 Subject: [PATCH] (lost_ca, trade_ca): Provide proper ca_table for selector type. --- src/lib/global/nsc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/global/nsc.c b/src/lib/global/nsc.c index 2a8e1723..eaf108f8 100644 --- a/src/lib/global/nsc.c +++ b/src/lib/global/nsc.c @@ -454,7 +454,7 @@ struct castr news_ca[] = { struct castr lost_ca[] = { /* no need for uid as long as it's not referenced from other tables */ {NSC_NATID, 0, 0, fldoff(loststr, lost_owner), "owner", EF_NATION}, - {NSC_CHAR, 0, 0, fldoff(loststr, lost_type), "type", EF_BAD}, + {NSC_CHAR, 0, 0, fldoff(loststr, lost_type), "type", EF_TABLE}, {NSC_SHORT, 0, 0, fldoff(loststr, lost_id), "id", EF_BAD}, {NSC_XCOORD, 0, 0, fldoff(loststr, lost_x), "x", EF_BAD}, {NSC_YCOORD, 0, 0, fldoff(loststr, lost_y), "y", EF_BAD}, @@ -482,7 +482,7 @@ struct castr commodity_ca[] = { struct castr trade_ca[] = { {NSC_SHORT, 0, 0, fldoff(trdstr, trd_uid), "uid", EF_TRADE}, {NSC_NATID, 0, 0, fldoff(trdstr, trd_owner), "owner", EF_NATION}, - {NSC_CHAR, 0, 0, fldoff(trdstr, trd_type), "type", EF_BAD}, + {NSC_CHAR, 0, 0, fldoff(trdstr, trd_type), "type", EF_TABLE}, {NSC_SHORT, 0, 0, fldoff(trdstr, trd_unitid), "unitid", EF_BAD}, {NSC_LONG, 0, 0, fldoff(trdstr, trd_price), "price", EF_BAD}, {NSC_INT, 0, 0, fldoff(trdstr, trd_maxbidder), "maxbidder", EF_NATION},