Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/mission.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,9 @@ bool mission::is_complete( const character_id &_npc_id ) const
if( status == mission_status::success ) {
return true;
}

if( status == mission_status::yet_to_start ) {
return true;
}
avatar &player_character = get_avatar();
switch( type->goal ) {
case MGOAL_GO_TO: {
Expand Down
Loading