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 d03f312 commit b5f48fcCopy full SHA for b5f48fc
code/modules/mob/inventory.dm
@@ -221,8 +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
- //By using the item's adjacent check instead of the user's, we allow for some item exceptions (e.g.: battlemat)
225
- if(W.loc && !W.recursive_in_contents_of(src) && !W.Adjacent(src) && !W.arcanetampered)
+ if(W.loc && !W.recursive_in_contents_of(src) && !Adjacent(W) && !W.arcanetampered)
226
227
228
if((W.flags & MUSTTWOHAND) && !(M_STRONG in mutations))
0 commit comments