Skip to content

Commit

Permalink
suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOM authored and DOOM committed May 31, 2024
1 parent b1e6139 commit 4b69c9c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 375 deletions.
365 changes: 0 additions & 365 deletions code/game/machinery/computer/skills.dm

This file was deleted.

3 changes: 3 additions & 0 deletions code/game/machinery/cryopod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li

var/mob/living/carbon/human/cryo_pod = occupant
if(cryo_pod.record_id_ref)
GLOB.data_core.medical -= occupant.record_id_ref

Check failure on line 358 in code/game/machinery/cryopod.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined field: "record_id_ref" on /mob/living
GLOB.data_core.general -= occupant.record_id_ref

Check failure on line 359 in code/game/machinery/cryopod.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined field: "record_id_ref" on /mob/living
GLOB.data_core.security -= occupant.record_id_ref

Check failure on line 360 in code/game/machinery/cryopod.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined field: "record_id_ref" on /mob/living
qdel(GLOB.data_core.medical[cryo_pod.record_id_ref])
qdel(GLOB.data_core.general[cryo_pod.record_id_ref])
qdel(GLOB.data_core.security[cryo_pod.record_id_ref])
Expand Down
8 changes: 0 additions & 8 deletions code/game/objects/items/circuitboards/computer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,10 @@
name = "Circuit board (Security Records)"
build_path = /obj/structure/machinery/computer/secure_data

/*
/obj/item/circuitboard/computer/skills
name = "Circuit board (Employment Records)"
build_path = /obj/structure/machinery/computer/skills
*/

/obj/item/circuitboard/computer/stationalert
name = "Circuit board (Station Alerts)"
build_path = /obj/structure/machinery/computer/station_alert



/obj/item/circuitboard/computer/air_management
name = "Circuit board (Atmospheric Monitor)"
build_path = /obj/structure/machinery/computer/general_air_control
Expand Down
Loading

0 comments on commit 4b69c9c

Please sign in to comment.