Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds TWE to ERT rotation #5351

Merged
merged 1 commit into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/datums/emergency_calls/emergency_call.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
var/arrival_message = "" //Msg to display about when the shuttle arrives
var/objectives //Txt of objectives to display to joined. Todo: make this into objective notes
var/objective_info //For additional info in the objectives txt
var/probability = 0 //Chance of it occurring. Total must equal 100%
var/probability = 0
var/hostility //For ERTs who are either hostile or friendly by random chance.
var/list/datum/mind/members = list() //Currently-joined members.
var/list/datum/mind/candidates = list() //Potential candidates for enlisting.
Expand Down
2 changes: 1 addition & 1 deletion code/datums/emergency_calls/royal_marines.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/datum/emergency_call/royal_marines
name = "Royal Marines Commando (Squad) (Friendly)"
mob_max = 7
probability = 0
probability = 15
name_of_spawn = /obj/effect/landmark/ert_spawns/distress_twe
item_spawn = /obj/effect/landmark/ert_spawns/distress_twe/item
max_engineers = 0
Expand Down
Loading