mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-06-03 20:44:32 +01:00
65b5126147
this commit : https://github.com/Baystation12/Baystation12/commit/ea1060ac339c4b4ef1692f446865926cf262dd68 added in machinery's attack_hand() proc, line 238 ``` if(!allowed(user)) user << "\red Access Denied." return 1 ``` to almost all machinery including computers, since they call this proc via their attack_hand() procs. allowed(user), see access.dm line 94, in turn only checks the user's hand and wear_id, NOT the card inside the machine, as different machines have different vars and systems handling how they can be accessed. instead of fixing the underlying problem, eject card verbs were added like this one : https://github.com/Baystation12/Baystation12/commit/30385c22371a4e47ac43eac2fc953f7f8854fad4 this PR reverts that nonsense machinery addition and adds the shuttle_control access check where it belongs.