[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>
This commit is contained in:
SkyratBot
2022-07-17 12:58:51 +02:00
committed by GitHub
parent 3d1c68ea9e
commit 41d3b97b7c
+1 -2
View File
@@ -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"