From d5b4a031cca2514848726f9f92e5fd7e206973b6 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Tue, 25 Jul 2017 15:01:16 -0400 Subject: [PATCH] Fixes Getting Weird/Undefined Objective --- code/game/gamemodes/objective.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index c04bddfee47..5bfeea1e7a2 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -1,7 +1,6 @@ var/global/list/all_objectives = list() -var/list/potential_theft_objectives = subtypesof(/datum/theft_objective) \ - - /datum/theft_objective/steal +var/list/potential_theft_objectives = subtypesof(/datum/theft_objective) - /datum/theft_objective/steal - /datum/theft_objective/number /datum/objective var/datum/mind/owner = null //Who owns the objective.