mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 16:44:33 +01:00
Fixes reverants in ghost mode getting gibbed (#25533)
* Fix * Lance clarification
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
to_chat(user, "<span class='warning'>You'll want this to dock on the station.</span>")
|
||||
return
|
||||
var/list/dir_choices = list("North" = NORTH, "East" = EAST, "South" = SOUTH, "West" = WEST)
|
||||
var/dir_choice = tgui_input_list(user, "Select the new docking area orientation.", "Dock Orientation", dir_choices)
|
||||
var/dir_choice = tgui_input_list(user, "Which direction should the shuttle approach from?", "Dock Orientation", dir_choices)
|
||||
if(!dir_choice)
|
||||
return
|
||||
|
||||
|
||||
@@ -638,6 +638,8 @@
|
||||
M.buckled.unbuckle_mob(M, force = TRUE)
|
||||
if(isliving(AM))
|
||||
var/mob/living/L = AM
|
||||
if(L.incorporeal_move || L.status_flags & GODMODE)
|
||||
continue
|
||||
L.stop_pulling()
|
||||
L.visible_message("<span class='warning'>[L] is hit by \
|
||||
a hyperspace ripple!</span>",
|
||||
|
||||
Reference in New Issue
Block a user