diff --git a/src/challenges/challenges.c b/src/challenges/challenges.c index 13376af..4823bfb 100644 --- a/src/challenges/challenges.c +++ b/src/challenges/challenges.c @@ -117,7 +117,6 @@ void loadChallenge(Mission *mission, cJSON *node) mission->challengeData.clearWaypointEnemies = getJSONValue(node, "clearWaypointEnemies", 0); mission->challengeData.eliminateThreats = getJSONValue(node, "eliminateThreats", 0); mission->challengeData.isDeathMatch = getJSONValue(node, "isDeathMatch", 0); - mission->challengeData.isTeamDeathMatch = getJSONValue(node, "isTeamDeathMatch", 0); node = cJSON_GetObjectItem(node, "challenges"); diff --git a/src/structs.h b/src/structs.h index 8a3943f..0250f6a 100644 --- a/src/structs.h +++ b/src/structs.h @@ -266,7 +266,6 @@ typedef struct { int clearWaypointEnemies; int eliminateThreats; int isDeathMatch; - int isTeamDeathMatch; Challenge *challenges[MAX_CHALLENGES]; } ChallengeData;