Substitute removed jobtypes with working ones

Replaced StoreItemInChest with StoreItemInHospital and StoreItemInCabinet with StoreOwnedItem. Seem to work on the basic level with waterskins and uniform cloaks.
develop
scamtank 2015-02-08 23:41:22 +02:00
parent 0f01583972
commit 35d357776c
1 changed files with 2 additions and 2 deletions

@ -509,11 +509,11 @@ static bool try_store_item(df::building *target, df::item *item)
job->flags.bits.specific_dropoff = true;
break;
case building_type::Cabinet:
job->job_type = job_type::StoreItemInCabinet;
job->job_type = job_type::StoreOwnedItem;
dest = true;
break;
default:
job->job_type = job_type::StoreItemInChest;
job->job_type = job_type::StoreItemInHospital;
dest = true;
break;
}