From 81f5b43558427f3bdbe200c14c84bb2f4fa2972f Mon Sep 17 00:00:00 2001 From: SamCroswell Date: Tue, 24 Feb 2015 10:20:24 -0500 Subject: [PATCH] ERT Landmark Fix --- code/game/response_team.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/response_team.dm b/code/game/response_team.dm index d17054eaa36..5c0172e3483 100644 --- a/code/game/response_team.dm +++ b/code/game/response_team.dm @@ -58,14 +58,14 @@ var/can_call_ert if(response_team_members.len > 6) usr << "The emergency response team is already full!" - for (var/obj/effect/landmark/L in landmarks_list) if (L.name == "Commando") + for (var/obj/effect/landmark/L in landmarks_list) if (L.name == "Response Team") L.name = null//Reserving the place. /*var/new_name = alert(usr, "Pick a name","Name") as null|text if(!new_name)//Somebody changed his mind, place is available again. L.name = "Commando" return*/ if(alert(usr, "Join the ERT?.", "Emergency Response Team", "Yes", "No") == "No") - L.name = "Commando" + L.name = "Response Team" return var/leader_selected = isemptylist(response_team_members)