Don't add keys to stash if this is a training mission.
This commit is contained in:
parent
95eb5bd011
commit
72ffa2a021
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue