X-Git-Url: http://git.pond.sub.org/?p=empserver;a=blobdiff_plain;f=include%2Fitem.h;h=dcebcc6f6d69cfcda41429a43bb20c619e962677;hp=e4ad31948ac3acdd3344cd6e7da97a7511c77fa4;hb=HEAD;hpb=1118f1c0ca13ca25b662fa600c5101ff1d38b67d diff --git a/include/item.h b/include/item.h index e4ad31948..dcebcc6f6 100644 --- a/include/item.h +++ b/include/item.h @@ -1,6 +1,6 @@ /* * Empire - A multi-player, client/server Internet based war game. - * Copyright (C) 1986-2012, Dave Pare, Jeff Bailey, Thomas Ruschak, + * Copyright (C) 1986-2021, Dave Pare, Jeff Bailey, Thomas Ruschak, * Ken Stevens, Steve McClure, Markus Armbruster * * Empire is free software: you can redistribute it and/or modify @@ -27,7 +27,7 @@ * item.h: Definitions for item characteristics stuff * * Known contributors to this file: - * + * Markus Armbruster, 2004-2020 */ #ifndef ITEM_H @@ -70,7 +70,7 @@ typedef enum { struct ichrstr { char i_mnem; /* usually the initial letter */ i_type i_uid; /* index in ichr[] */ - int i_value; /* mortgage value */ + int i_power; /* power value of 1000 items */ int i_sell; /* can this be sold? */ int i_lbs; /* how hard to move */ int i_pkg[NUMPKG]; /* units for reg, ware, urb, bank */ @@ -80,7 +80,8 @@ struct ichrstr { /* variables using this structure */ -extern struct ichrstr ichr[I_MAX + 2]; +#define ICHR_SZ (I_MAX + 2) +extern struct ichrstr ichr[ICHR_SZ]; /* procedures using/returning this struct */