mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 11:30:35 +01:00
Modular Computer Quickfix (#8735)
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
icon_state_screensaver = "standby"
|
||||
hardware_flag = PROGRAM_WRISTBOUND
|
||||
slot_flags = SLOT_GLOVES|SLOT_ID
|
||||
can_reset = TRUE
|
||||
max_hardware_size = 1
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
light_strength = 1
|
||||
@@ -21,7 +22,7 @@
|
||||
/obj/item/modular_computer/wristbound/attack_hand(mob/user)
|
||||
if(ishuman(user))
|
||||
var/mob/living/carbon/human/H = user
|
||||
if(H.gloves == src)
|
||||
if(H.gloves == src || H.wear_id == src)
|
||||
return attack_self(user)
|
||||
..()
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@
|
||||
description = "Contains the most common research programs and command software."
|
||||
available = FALSE
|
||||
|
||||
/datum/modular_computer_app_presets/research/return_install_programs()
|
||||
/datum/modular_computer_app_presets/research/rd/return_install_programs()
|
||||
var/list/_prg_list = list(
|
||||
new /datum/computer_file/program/filemanager(),
|
||||
new /datum/computer_file/program/chatclient(),
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/datum/computer_file/program/card_mod
|
||||
filename = "cardmod"
|
||||
filedesc = "ID card modification program"
|
||||
filedesc = "ID Card Modification Program"
|
||||
nanomodule_path = /datum/nano_module/program/card_mod
|
||||
program_icon_state = "id"
|
||||
extended_desc = "Program for programming employee ID cards to access parts of the station."
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
/datum/computer_file/program/comm
|
||||
filename = "comm"
|
||||
filedesc = "Command and communications program."
|
||||
filedesc = "Command and Communications Program"
|
||||
program_icon_state = "comm"
|
||||
nanomodule_path = /datum/nano_module/program/comm
|
||||
extended_desc = "Used to command and control the station. Can relay long-range communications."
|
||||
|
||||
Reference in New Issue
Block a user