From c40e9530e5fcde8ea02db0bde28f9878cf0c7667 Mon Sep 17 00:00:00 2001 From: mikomyazaki <47489928+mikomyazaki@users.noreply.github.com> Date: Wed, 19 Feb 2020 17:45:30 +0000 Subject: [PATCH] Removes mention of the halogen counter (#8311) --- code/game/objects/items/devices/PDA/PDA.dm | 5 ----- html/changelogs/no_halogen_counter.yml | 6 ++++++ nano/templates/pda.tmpl | 3 --- 3 files changed, 6 insertions(+), 8 deletions(-) create mode 100644 html/changelogs/no_halogen_counter.yml diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 4dcd532f7d0..95f4fd87ae8 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -744,11 +744,6 @@ var/global/list/obj/item/device/pda/PDAs = list() scanmode = 0 else if((!isnull(cartridge)) && (cartridge.access_reagent_scanner)) scanmode = 3 - if("Halogen Counter") - if(scanmode == 4) - scanmode = 0 - else if((!isnull(cartridge)) && (cartridge.access_engine)) - scanmode = 4 if("Honk") if ( !(last_honk && world.time < last_honk + 20) ) playsound(loc, 'sound/items/bikehorn.ogg', 50, 1) diff --git a/html/changelogs/no_halogen_counter.yml b/html/changelogs/no_halogen_counter.yml new file mode 100644 index 00000000000..86a8bbaf31a --- /dev/null +++ b/html/changelogs/no_halogen_counter.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - bugfix: "Removes mention of the 'Halogen Counter', as it was not implemented and does not make sense with the server's radiation system." \ No newline at end of file diff --git a/nano/templates/pda.tmpl b/nano/templates/pda.tmpl index 4b7aad18cde..2a0360e69f6 100644 --- a/nano/templates/pda.tmpl +++ b/nano/templates/pda.tmpl @@ -154,9 +154,6 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm {{if data.cartridge.access.access_reagent_scanner==1}} {{:helper.link(data.scanmode == 3 ? 'Disable Reagent Scanner' : 'Enable Reagent Scanner', 'gear', {'choice' : "Reagent Scan"}, null, 'fixedLeftWider')}} {{/if}} - {{if data.cartridge.access.access_engine==1}} - {{:helper.link(data.scanmode == 4 ? 'Disable Halogen Counter' : 'Enable Halogen Counter', 'gear', {'choice' : "Halogen Counter"}, null, 'fixedLeftWider')}} - {{/if}} {{if data.cartridge.access.access_atmos==1}} {{:helper.link(data.scanmode == 5 ? 'Disable Gas Scanner' : 'Enable Gas Scanner', 'gear', {'choice' : "Gas Scan"}, null, 'fixedLeftWide')}} {{/if}}