Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Adds better clarification for anomaly core types in Phazon constructi…
Browse files Browse the repository at this point in the history
…on (tgstation#49713)

* Adds better clarification for anomaly core types in Phazon construction.

* This sucks less now
  • Loading branch information
ninjanomnom authored Mar 5, 2020
1 parent d0870a9 commit 3858f04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/mecha/mecha_construction_paths.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@
"key" = /obj/item/assembly/signaler/anomaly/bluespace,
"action" = ITEM_DELETE,
"back_key" = TOOL_WELDER,
"desc" = "Anomaly core socket is open.",
"desc" = "Bluespace anomaly core socket is open.",
"icon_state" = "phazon24"
)
)
Expand Down
5 changes: 5 additions & 0 deletions code/game/mecha/mecha_parts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@
name = "\improper Phazon chassis"
construct_type = /datum/component/construction/unordered/mecha_chassis/phazon

/obj/item/mecha_parts/chassis/phazon/attackby(obj/item/I, mob/user, params)
. = ..()
if(istype(I, /obj/item/assembly/signaler/anomaly) && !istype(I, /obj/item/assembly/signaler/anomaly/bluespace))
to_chat(user, "The anomaly core socket only accepts bluespace anomaly cores!")

/obj/item/mecha_parts/part/phazon_torso
name="\improper Phazon torso"
desc="A Phazon torso part. The socket for the bluespace core that powers the exosuit's unique phase drives is located in the middle."
Expand Down

0 comments on commit 3858f04

Please sign in to comment.