Don't add keys to stash if this is a training mission.

This commit is contained in:
Steve 2018-04-07 10:19:28 +01:00
parent 95eb5bd011
commit 72ffa2a021
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ void dropCarriedItems(void)
if (item != NULL)
{
if (item->type == ET_KEY)
if (item->type == ET_KEY && world.missionType != MT_TRAINING)
{
addKeyToStash(item);