mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Refactors some procs from unsorted.dm helper to better places (#10443)
This commit is contained in:
@@ -306,7 +306,7 @@
|
||||
"<span class='notice'>You hear rustling of clothes.</span>"
|
||||
)
|
||||
return
|
||||
if(!dropsafety(W))
|
||||
if(!W.dropsafety())
|
||||
return
|
||||
if(W)
|
||||
user.drop_from_inventory(W,loc)
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
var/obj/item/grab/G = W
|
||||
MouseDrop_T(G.affecting, user) //act like they were dragged onto the closet
|
||||
return 0
|
||||
if(!dropsafety(W))
|
||||
if(!W.dropsafety())
|
||||
return
|
||||
if(W)
|
||||
user.drop_from_inventory(W,loc)
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
var/obj/item/grab/G = W
|
||||
MouseDrop_T(G.affecting, user) //act like they were dragged onto the closet
|
||||
return 0
|
||||
if(!dropsafety(W))
|
||||
if(!W.dropsafety())
|
||||
return
|
||||
if(W)
|
||||
user.drop_from_inventory(W,loc)
|
||||
|
||||
Reference in New Issue
Block a user