From 7149e61c59959d4d2666968f757663fd183ff3fa Mon Sep 17 00:00:00 2001 From: Alberyk Date: Wed, 31 Mar 2021 12:53:20 -0300 Subject: [PATCH] Fixes some zeng hu augments (#11565) --- code/modules/organs/subtypes/augment.dm | 4 +++- code/modules/organs/subtypes/autakh.dm | 2 +- html/changelogs/alberyk-zenghufix.yml | 7 +++++++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/alberyk-zenghufix.yml diff --git a/code/modules/organs/subtypes/augment.dm b/code/modules/organs/subtypes/augment.dm index 9707e033f84..596bde0eff2 100644 --- a/code/modules/organs/subtypes/augment.dm +++ b/code/modules/organs/subtypes/augment.dm @@ -465,7 +465,7 @@ if(!.) return FALSE - zoom(owner,7,3, FALSE) + zoom(owner,7,7, FALSE) /obj/item/organ/internal/augment/enhanced_vision/emp_act(severity) ..() @@ -492,6 +492,8 @@ if(!.) return FALSE + lights_on = !lights_on + if(lights_on) set_light(5, 2, LIGHT_COLOR_TUNGSTEN, uv = 0, angle = LIGHT_WIDE) else diff --git a/code/modules/organs/subtypes/autakh.dm b/code/modules/organs/subtypes/autakh.dm index 350484165d1..f269863eb69 100644 --- a/code/modules/organs/subtypes/autakh.dm +++ b/code/modules/organs/subtypes/autakh.dm @@ -180,7 +180,7 @@ owner.visible_message("[user]'s eyes whirrs loudly as they focus ahead.") take_damage(1) - zoom(owner,7,3, FALSE) + zoom(owner,7,7, FALSE) /obj/item/organ/internal/augment/eye_flashlight name = "eye flashlight" diff --git a/html/changelogs/alberyk-zenghufix.yml b/html/changelogs/alberyk-zenghufix.yml new file mode 100644 index 00000000000..1fd47957134 --- /dev/null +++ b/html/changelogs/alberyk-zenghufix.yml @@ -0,0 +1,7 @@ +author: Alberyk + +delete-after: True + +changes: + - bugfix: "Fixed the ocular installed sightlights not working." + - bugfix: "Fixed zooming augment not working properly."