Ejecting ink cartridge from airlock painter now requires proximity (#76092)

## About The Pull Request
Fixes #76073

## Changelog
🆑
fix: you need to be in proximity of the airlock painter to eject its
cartridge.
/🆑
This commit is contained in:
SyncIt21
2023-06-17 18:22:22 +02:00
committed by GitHub
parent ea01456e4f
commit e2f672747a
+1 -1
View File
@@ -149,7 +149,7 @@
/obj/item/airlock_painter/AltClick(mob/user)
. = ..()
if(ink)
if(ink && user.can_perform_action(src))
playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE)
ink.forceMove(user.drop_location())
user.put_in_hands(ink)