mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-10 22:55:22 +01:00
5926589c16
* removes var/ inside all procs * . * ugh
14 lines
378 B
Plaintext
14 lines
378 B
Plaintext
/*
|
|
Ships can now be hijacked!
|
|
*/
|
|
/obj/machinery/computer/ship
|
|
var/hacked = 0 // Has been emagged, no access restrictions.
|
|
|
|
/obj/machinery/computer/ship/emag_act(remaining_charges, mob/user)
|
|
if (!hacked)
|
|
req_access = list()
|
|
req_one_access = list()
|
|
hacked = 1
|
|
to_chat(user, "You short out the console's ID checking system. It's now available to everyone!")
|
|
return 1
|