Skip to content

Commit

Permalink
fixed the ghost issue
Browse files Browse the repository at this point in the history
  • Loading branch information
XeonMations committed Aug 19, 2024
1 parent 14b2b69 commit afa30c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
to_chat(user, "<span class='warning'>\The [src] is not possessable!")
return
var/control_ask = tgui_alert(usr, "Do you wish to take control of \the [src]", "Chirp Time?", list("Yes", "No"))
if(control_ask == "No" || !src || QDELETED(src) || QDELETED(user))
if(control_ask != "Yes" || !src || QDELETED(src) || QDELETED(user))
return FALSE
if(QDELETED(src) || QDELETED(user) || !user.client)
return
Expand Down

0 comments on commit afa30c4

Please sign in to comment.