Skip to content

Commit

Permalink
don't nullspace the ghost if there are no eligible pods
Browse files Browse the repository at this point in the history
  • Loading branch information
brndd committed Dec 11, 2024
1 parent 22935cf commit 831a5c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/datums/gamemode/role/divergentclone.dm
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@
pod = find_eligible_pod(ghost)
else
return
if(pod == null)
to_chat(ghost, "<span class='warning'>No eligible cloning pods found. Please try again later.</span>")
return
ghost.forceMove(get_turf(pod))

var/mob/living/clone = null
Expand Down

0 comments on commit 831a5c8

Please sign in to comment.