Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Sep 11, 2023
1 parent 30aed51 commit c1e9e59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions code/datums/emergency_calls/cryo_spec.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
spawn_max_amount = TRUE

/datum/emergency_call/cryo_spec/create_member(datum/mind/mind, turf/override_spawn_loc)
set waitfor = 0
set waitfor = FALSE
if(SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST)
name_of_spawn = /obj/effect/landmark/ert_spawns/distress_wo
var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point()

if(!istype(spawn_loc)) return //Didn't find a useable spawn point.
if(!istype(spawn_loc))
return //Didn't find a useable spawn point.

var/mob/living/carbon/human/human = new(spawn_loc)

Expand Down
4 changes: 2 additions & 2 deletions code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
flags = TREE_FLAG_MARINE
tier = /datum/tier/three

/datum/tech/cryomarine/can_unlock(mob/M)
/datum/tech/cryomarine/can_unlock(mob/user)
. = ..()
if(!.)
return
if(!SSticker.mode)
to_chat(M, SPAN_WARNING("You can't do this right now!"))
to_chat(user, SPAN_WARNING("You can't do this right now!"))
return

/datum/tech/cryomarine/on_unlock()
Expand Down

0 comments on commit c1e9e59

Please sign in to comment.