mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user