We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a9e072 commit 61929b3Copy full SHA for 61929b3
code/modules/mob/inventory.dm
@@ -221,7 +221,7 @@
221
return 0
222
223
// adjacent only loc checks one way around, so first part is necessary, also for anything inside too
224
- if(W.loc && !W.recursive_in_contents_of(src) && !Adjacent(W) && !W.arcanetampered)
+ if(W.loc && !W.recursive_in_contents_of(src) && !(Adjacent(W) || W.Adjacent(W)) && !W.arcanetampered)
225
226
227
if((W.flags & MUSTTWOHAND) && !(M_STRONG in mutations))
@@ -368,7 +368,7 @@
368
369
if(failmsg == TRUE)
370
failmsg = to_drop ? "<span class='warning'>You can't let go of \the [to_drop]!</span>" : null
371
-
+
372
if(!candrop) //can't drop items while etheral
373
if(failmsg)
374
to_chat(src, failmsg)
0 commit comments