Can no toggle whether an objective is completed via the traitor panel.

Currently only works for custom objectives.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5110 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
elly1989@rocketmail.com
2012-11-18 17:45:20 +00:00
parent 0c400d1a75
commit 8eba871575
2 changed files with 9 additions and 3 deletions
+2 -1
View File
@@ -5,13 +5,14 @@ datum/objective
var/explanation_text = "Nothing" //What that person is supposed to do.
var/datum/mind/target = null //If they are focused on a particular person.
var/target_amount = 0 //If they are focused on a particular number. Steal objectives have their own counter.
var/completed = 0 //currently only used for custom objectives.
New(var/text)
if(text)
explanation_text = text
proc/check_completion()
return 1
return completed
proc/find_target()
var/list/possible_targets = list()