Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: harryob <[email protected]>
  • Loading branch information
TheGamerdk and harryob authored Jun 25, 2023
1 parent 58dd23b commit 7855f2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/emergency_calls/cryo_marines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
/datum/emergency_call/cryo_squad/spawn_candidates(announce, override_spawn_loc, announce_dispatch_message)
var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo]
leaders = cryo_squad.num_leaders
var/previous_members = members.len
var/previous_members = length(members)
. = ..()
shipwide_ai_announcement("Successfully deployed [members.len - previous_members] Foxtrot marines.")
shipwide_ai_announcement("Successfully deployed [length(members) - previous_members] Foxtrot marines.")

/datum/emergency_call/cryo_squad/create_member(datum/mind/M, turf/override_spawn_loc)
set waitfor = 0
Expand Down

0 comments on commit 7855f2b

Please sign in to comment.