[no gbp] reverts some unintended duplicate checks (#86674)

## About The Pull Request
when working on #86031 , i added some checks that were already being
handled earlier in the chain, serving nothing. thanks to melbert for
catching these

## Why It's Good For The Game
removes some duplicated checks
This commit is contained in:
Ben10Omintrix
2024-09-16 09:42:34 +03:00
committed by GitHub
parent d401db17ad
commit 4e4a904a3b
5 changed files with 1 additions and 14 deletions
@@ -915,8 +915,6 @@ GLOBAL_LIST_EMPTY(roundstart_station_closets)
/obj/structure/closet/mouse_drop_receive(atom/movable/O, mob/living/user, params)
if(!istype(O) || O.anchored || istype(O, /atom/movable/screen))
return
if(!istype(user) || user.incapacitated || user.body_position == LYING_DOWN)
return
if(user == O) //try to climb onto it
return ..()
if(!opened)