[NO GBP] Fixes mechs being unable to interact with stuff (#96981)

## About The Pull Request
Missing negation in a last minute commit lets gooo

## Changelog
🆑
fix: Fixed mechs being unable to interact with stuff
/🆑
This commit is contained in:
SmArtKar
2026-07-16 14:53:37 +02:00
committed by GitHub
parent 376684351d
commit f7c2fca42e
+1 -1
View File
@@ -727,7 +727,7 @@
return
if(!isturf(target) && !isturf(target.loc)) // Prevents inventory from being drilled
return
if(can_interact_with(target, user, modifiers))
if(!can_interact_with(target, user, modifiers))
return
if(src == target)
return