forked from github/server
last of the GROWING_TREES defines
This commit is contained in:
parent
ec86c9a572
commit
b915bf74f3
1 changed files with 0 additions and 8 deletions
|
@ -223,20 +223,12 @@ showregion(region * r, char full)
|
||||||
if (r->terrain != T_OCEAN && r->terrain!=T_FIREWALL) {
|
if (r->terrain != T_OCEAN && r->terrain!=T_FIREWALL) {
|
||||||
sprintf(buf, " %d peasants, %d(%d) silver", rpeasants(r), rmoney(r), count_all_money(r));
|
sprintf(buf, " %d peasants, %d(%d) silver", rpeasants(r), rmoney(r), count_all_money(r));
|
||||||
adddbllist(®list, buf);
|
adddbllist(®list, buf);
|
||||||
#if GROWING_TREES
|
|
||||||
sprintf(buf, " %d horses, %d/%d/%d ",
|
sprintf(buf, " %d horses, %d/%d/%d ",
|
||||||
rhorses(r), rtrees(r,2), rtrees(r,1), rtrees(r,0));
|
rhorses(r), rtrees(r,2), rtrees(r,1), rtrees(r,0));
|
||||||
if (fval(r,RF_MALLORN))
|
if (fval(r,RF_MALLORN))
|
||||||
sncat(buf, "mallorn", BUFSIZE);
|
sncat(buf, "mallorn", BUFSIZE);
|
||||||
else
|
else
|
||||||
sncat(buf, "trees", BUFSIZE);
|
sncat(buf, "trees", BUFSIZE);
|
||||||
#else
|
|
||||||
sprintf(buf, " %d Pferde, %d ", rhorses(r), rtrees(r));
|
|
||||||
if (fval(r,RF_MALLORN))
|
|
||||||
sncat(buf, "mallorn", BUFSIZE);
|
|
||||||
else
|
|
||||||
sncat(buf, "trees", BUFSIZE);
|
|
||||||
#endif
|
|
||||||
adddbllist(®list, buf);
|
adddbllist(®list, buf);
|
||||||
|
|
||||||
#if NEW_RESOURCEGROWTH
|
#if NEW_RESOURCEGROWTH
|
||||||
|
|
Loading…
Reference in a new issue