diff --git a/code/game/objects/items/devices/communicator/UI.dm b/code/game/objects/items/devices/communicator/UI.dm index 5df153c663..3c8cf50f51 100644 --- a/code/game/objects/items/devices/communicator/UI.dm +++ b/code/game/objects/items/devices/communicator/UI.dm @@ -108,7 +108,6 @@ data["note"] = note // current notes data["weather"] = weather data["aircontents"] = src.analyze_air() - data["flashlight"] = fon data["injection"] = injection // update the ui if it exists, returns null if no ui is passed/found @@ -246,9 +245,5 @@ note = "" notehtml = note - if(href_list["Light"]) - fon = !fon - set_light(fon * flum) - nanomanager.update_uis(src) add_fingerprint(usr) \ No newline at end of file diff --git a/code/game/objects/items/devices/communicator/communicator.dm b/code/game/objects/items/devices/communicator/communicator.dm index 36e3cbb446..d5a4114aff 100644 --- a/code/game/objects/items/devices/communicator/communicator.dm +++ b/code/game/objects/items/devices/communicator/communicator.dm @@ -32,9 +32,6 @@ var/global/list/obj/item/device/communicator/all_communicators = list() var/notehtml = "" var/obj/item/weapon/cartridge/cartridge = null //current cartridge - var/fon = 0 // Internal light - var/flum = 2 // Brightness - var/list/modules = list( list("module" = "Phone", "icon" = "phone64", "number" = 2), list("module" = "Contacts", "icon" = "person64", "number" = 3), diff --git a/html/changelogs/Atermonera - Commlight.yml b/html/changelogs/Atermonera - Commlight.yml deleted file mode 100644 index 338d138da5..0000000000 --- a/html/changelogs/Atermonera - Commlight.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: Atermonera - -delete-after: True - - - rscadd: "Communicators have a flashlight under the settings menu, functions as the PDA one" diff --git a/nano/templates/communicator.tmpl b/nano/templates/communicator.tmpl index 60558b84c8..63674d3752 100644 --- a/nano/templates/communicator.tmpl +++ b/nano/templates/communicator.tmpl @@ -385,15 +385,6 @@ Used In File(s): code\game\objects\items\devices\communicator\communicator.dm -