Make cargo pods appear again.

Cargo items were always set inactive after the conversion of variables
from signed char to bool.
This commit is contained in:
Guus Sliepen 2011-08-27 22:08:08 +02:00
parent 6c6fa1ec2e
commit bf39080d6f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ object *addCargo(object *owner, int cargoType)
if (index == -1)
return NULL;
cargo[index].active = false;
cargo[index].active = true;
cargo[index].owner = owner;
cargo[index].x = owner->x;
cargo[index].y = owner->y;