diff --git a/code/game/objects/items/stacks/telecrystal.dm b/code/game/objects/items/stacks/telecrystal.dm index 66bdc663d22..72333e77ed5 100644 --- a/code/game/objects/items/stacks/telecrystal.dm +++ b/code/game/objects/items/stacks/telecrystal.dm @@ -3,7 +3,6 @@ desc = "It seems to be pulsing with suspiciously enticing energies." desc_antag = "Telecrystals can be activated by utilizing them on devices with an actively running uplink. They will not activate on unactivated uplinks." singular_name = "telecrystal" - icon = 'icons/obj/telescience.dmi' icon_state = "telecrystal" w_class = ITEMSIZE_TINY max_amount = 50 @@ -34,4 +33,4 @@ I.hidden_uplink.update_nano_data() SSnanoui.update_uis(I.hidden_uplink) use(amount) - to_chat(user, "You slot \the [src] into \the [I] and charge its internal uplink.") + to_chat(user, SPAN_NOTICE("You slot \the [src] into \the [I] and charge its internal uplink.")) diff --git a/html/changelogs/wezzy_telecrystals.yml b/html/changelogs/wezzy_telecrystals.yml new file mode 100644 index 00000000000..db44731d2cd --- /dev/null +++ b/html/changelogs/wezzy_telecrystals.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Wowzewow (Wezzy) + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Improves telecrystal sprites." diff --git a/icons/obj/item/stacks/materials.dmi b/icons/obj/item/stacks/materials.dmi index 66f34ebceda..4f560b32d55 100644 Binary files a/icons/obj/item/stacks/materials.dmi and b/icons/obj/item/stacks/materials.dmi differ diff --git a/icons/obj/radio.dmi b/icons/obj/radio.dmi index d0f3fed7610..0ba24e31ddf 100644 Binary files a/icons/obj/radio.dmi and b/icons/obj/radio.dmi differ diff --git a/icons/obj/telescience.dmi b/icons/obj/telescience.dmi index 5af898df4be..03ae1799474 100644 Binary files a/icons/obj/telescience.dmi and b/icons/obj/telescience.dmi differ