Skip to content

Commit

Permalink
Фикс возможного фокуса
Browse files Browse the repository at this point in the history
  • Loading branch information
AmShegars committed Feb 19, 2024
1 parent 187c852 commit 8980dc7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,9 @@ default behaviour is:
if(C.passengers_ammount > 1)
var/choose
var/choosed_place = input(usr, "Choose passenger place which you want unload.", name, choose) as null|anything in C.passenger_places
C.forced_leave_passenger(choosed_place , null , C)
if(choosed_place == null)
return FALSE
C.forced_leave_passenger(choosed_place, null , C)
else
C.forced_leave_passenger(null , MECH_DROP_ANY_PASSENGER , C)
return TRUE
Expand Down

0 comments on commit 8980dc7

Please sign in to comment.