From 41d3b97b7c0ea6bf89a3e52e98b2ddfa17ae76dd Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 17 Jul 2022 12:58:51 +0200 Subject: [PATCH] [MIRROR] Fixes Thermal Vision mutation having 1/10th the duration [MDB IGNORE] (#14944) * Fixes Thermal Vision mutation having 1/10th the duration (#68350) A missed SECONDS define causes Thermal Vision to have 1/10th the intended duration. * Fixes Thermal Vision mutation having 1/10th the duration Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/datums/mutations/sight.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/datums/mutations/sight.dm b/code/datums/mutations/sight.dm index 9beb1beb96c..2ae8ae9fc13 100644 --- a/code/datums/mutations/sight.dm +++ b/code/datums/mutations/sight.dm @@ -63,8 +63,7 @@ return to_modify.eye_damage = 10 * GET_MUTATION_SYNCHRONIZER(src) - to_modify.thermal_duration = 10 * GET_MUTATION_POWER(src) - + to_modify.thermal_duration = 10 SECONDS * GET_MUTATION_POWER(src) /datum/action/cooldown/spell/thermal_vision name = "Activate Thermal Vision"