Bugfix bauernnutzung

This commit is contained in:
Enno Rehling 2002-11-24 08:56:26 +00:00
parent 4a25f466dd
commit 69dcc7c17b
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ static int
res_changepeasants(unit * u, const resource_type * rtype, int delta) res_changepeasants(unit * u, const resource_type * rtype, int delta)
{ {
assert(rtype!=NULL && u->region->land); assert(rtype!=NULL && u->region->land);
u->region->land->peasants-=delta; u->region->land->peasants+=delta;
return 0; return 0;
} }