Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Jul 24, 2024
1 parent 21b1ebe commit b7efcd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/machinery/robotic_cradle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
return FALSE
var/mob/living/carbon/human/patient = target_mob
if(!(patient.species.species_flags & ROBOTIC_LIMBS))
visible_message(span_warning("[src] buzzes. Subject is biological, cannot repair"))
visible_message(span_warning("[src] buzzes. Subject is biological, cannot repair."))
playsound(src, 'sound/machines/buzz-two.ogg', 50, FALSE)
return FALSE
if(patient.abiotic())
Expand All @@ -138,7 +138,7 @@
operating_mob.visible_message(span_notice("[operating_mob] starts placing [patient] \the [src]."),
span_notice("You start placing [patient] into \the [src]."))

if(!do_after(patient, 1 SECONDS, IGNORE_HELD_ITEM, src, BUSY_ICON_GENERIC))
if(!do_after(operating_mob, 1 SECONDS, IGNORE_HELD_ITEM, src, BUSY_ICON_GENERIC))
return FALSE
if(occupant) //In case someone tried climbing in earlier than us, while the cradle was empty
to_chat(operating_mob, span_notice("[src] is already occupied!"))
Expand Down

0 comments on commit b7efcd1

Please sign in to comment.