You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to_chat(user, "<span class='warning'>The [boss_title] has deemed your objectives too delicate for an early extraction.</span>")
514
+
return
515
+
516
+
if(world.time <60MINUTES) // 60 minutes of no exfil
517
+
to_chat(user, "<span class='warning'>The [boss_title] is still preparing an exfiltration portal. Please wait another [round((36000-world.time) /600)] minutes before trying again.</span>")
if(world.time <60MINUTES) // 60 minutes of no exfil
26
-
to_chat(user, "<span class='warning'>The hivemind is still amassing an exfiltration portal. Please wait another [round((36000-world.time) /600)] minutes before trying again.</span>")
Copy file name to clipboardExpand all lines: code/modules/antagonists/mind_flayer/powers/flayer_stealth_powers.dm
+1-19Lines changed: 1 addition & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -271,23 +271,5 @@
271
271
if(used)
272
272
to_chat(user, "<span class='warning'>You have already attempted to create a portal generator!</span>")
273
273
return
274
-
// No extraction for certian steals/hijack
275
-
var/denied=FALSE
276
-
var/objectives= user.mind.get_all_objectives()
277
-
for(var/datum/objective/goalin objectives)
278
-
if(goal.restricts_exfiltration)
279
-
denied =TRUE
280
-
if(denied)
281
-
to_chat(user, "<span class='warning'>The master mindflayer has deemed your objectives too delicate for an early extraction.</span>")
282
-
used =TRUE
283
-
return
284
-
285
-
if(world.time <60MINUTES) // 60 minutes of no exfil
286
-
to_chat(user, "<span class='warning'>The master mindflayer is still assembling an exfiltration portal. Please wait another [round((36000-world.time) /600)] minutes before trying again.</span>")
Copy file name to clipboardExpand all lines: code/modules/antagonists/vampire/vampire_powers/vampire_powers.dm
+2-19Lines changed: 2 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -121,25 +121,8 @@
121
121
if(used)
122
122
to_chat(user, "<span class='warning'>You have already attempted to create a blood chalice!</span>")
123
123
return
124
-
// No extraction for certian steals/hijack
125
-
var/denied=FALSE
126
-
var/objectives= user.mind.get_all_objectives()
127
-
for(var/datum/objective/goalin objectives)
128
-
if(goal.restricts_exfiltration)
129
-
denied =TRUE
130
-
if(denied)
131
-
to_chat(user, "<span class='warning'>The master vampire has deemed your objectives too delicate for an early extraction.</span>")
132
-
used =TRUE
133
-
return
134
-
135
-
if(world.time <60MINUTES) // 60 minutes of no exfil
136
-
to_chat(user, "<span class='warning'>The master vampire is still conjuring an exfiltration portal. Please wait another [round((36000-world.time) /600)] minutes before trying again.</span>")
0 commit comments