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

Join as freed mob no longer runtimes #7064

Merged
merged 3 commits into from
Sep 7, 2024
Merged
Changes from 2 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
4 changes: 3 additions & 1 deletion code/modules/mob/dead/observer/observer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
for(var/role in mobs_by_role)
for(var/freed_mob in mobs_by_role[role])
freed_mob_choices["[freed_mob] ([role])"] = freed_mob

if(!length(freed_mob_choices))
to_chat(src, SPAN_WARNING("There is no Freed Mobs available."))
kiVts marked this conversation as resolved.
Show resolved Hide resolved
return
var/choice = tgui_input_list(usr, "Pick a Freed Mob:", "Join as Freed Mob", freed_mob_choices)
if(!choice)
return
Expand Down
Loading