From d97fad2acee8efe999bbd509f54353ac4860272b Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Tue, 21 Sep 2010 06:20:45 +0000 Subject: [PATCH] Forgot to uncomment some bits I'd had commented out in the process of making sure I could only get AI theft objectives while testing. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@128 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/objective.dm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 9e56ec251af..c42eed36464 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -108,20 +108,20 @@ datum var/obj/item/steal_target var/target_name proc/find_target() - var/list/items = list(/*"captain's antique laser gun", "hand teleporter", "RCD", "jetpack", "captains jumpsuit", */"functional ai") + var/list/items = list("captain's antique laser gun", "hand teleporter", "RCD", "jetpack", "captains jumpsuit", "functional ai") target_name = pick(items) switch(target_name) -// if("captain's antique laser gun") -// steal_target = /obj/item/weapon/gun/energy/laser_gun/captain -// if("hand teleporter") -// steal_target = /obj/item/weapon/hand_tele -// if("RCD") -// steal_target = /obj/item/weapon/rcd -// if("jetpack") -// steal_target = /obj/item/weapon/tank/jetpack -// if("captains jumpsuit") -// steal_target = /obj/item/clothing/under/rank/captain + if("captain's antique laser gun") + steal_target = /obj/item/weapon/gun/energy/laser_gun/captain + if("hand teleporter") + steal_target = /obj/item/weapon/hand_tele + if("RCD") + steal_target = /obj/item/weapon/rcd + if("jetpack") + steal_target = /obj/item/weapon/tank/jetpack + if("captains jumpsuit") + steal_target = /obj/item/clothing/under/rank/captain if("functional ai") steal_target = /obj/item/device/aicard