From 6f2e8bfddb9de6cb01f8c306f44a496d7bf4cbc6 Mon Sep 17 00:00:00 2001 From: cadowtin Date: Fri, 13 Sep 2024 21:32:13 -0500 Subject: [PATCH] Fix to text --- scripts/helpers/animation/text/fromSoftwareText.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/helpers/animation/text/fromSoftwareText.js b/scripts/helpers/animation/text/fromSoftwareText.js index f6b5de1..4ed46b9 100644 --- a/scripts/helpers/animation/text/fromSoftwareText.js +++ b/scripts/helpers/animation/text/fromSoftwareText.js @@ -10,7 +10,7 @@ import { getSetting } from "../../misc.js"; * @returns {Promise} A promise that resolves to the played Sequence. */ export async function eldenRingNounVerbed(options = {}) { - const text = options.text ?? getSetting(`from-software.noun-verbed.sound-text`); + const text = options.text ?? getSetting(`from-software.noun-verbed.text`); const sound = options.sound ?? getSetting(`from-software.noun-verbed.sound-effect`); const fontSize = options.fontSize ?? getSetting(`from-software.noun-verbed.font-size`); const duration = (options.duration ?? getSetting(`from-software.noun-verbed.duration`)) * 1000; @@ -71,7 +71,7 @@ export async function eldenRingNounVerbed(options = {}) { * @returns {Promise} A promise that resolves to the played Sequence. */ export async function eldenRingDeath(options = {}) { - const text = options.text ?? getSetting(`from-software.death.sound-text`); + const text = options.text ?? getSetting(`from-software.death.text`); const sound = options.sound ?? getSetting(`from-software.death.sound-effect`); const fontSize = options.fontSize ?? getSetting(`from-software.death.font-size`); const duration = (options.duration ?? getSetting(`from-software.death.duration`)) * 1000;