From 4f5c616240b50e2c247841770c73066e432bfa35 Mon Sep 17 00:00:00 2001 From: ZettaSword <38763491+ZettaSword@users.noreply.github.com> Date: Wed, 11 Jan 2023 17:50:07 +0300 Subject: [PATCH] Added missing sound for the Mirage spell (#835) Because of "[Client thread/WARN]: Missing sound for event: ebwizardry:spell.mirage" in latest.log i found that Mirage spell has no effect, even if it's registered. That's why with this request i add it to sounds.json. --- src/main/resources/assets/ebwizardry/sounds.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/assets/ebwizardry/sounds.json b/src/main/resources/assets/ebwizardry/sounds.json index 70bd1d40..709adb53 100644 --- a/src/main/resources/assets/ebwizardry/sounds.json +++ b/src/main/resources/assets/ebwizardry/sounds.json @@ -363,6 +363,7 @@ "spell.zombie_apocalypse.start": {"category": "spells", "sounds": ["ebwizardry:dark_aura_start"]}, "spell.zombie_apocalypse.loop": {"category": "spells", "sounds": ["ebwizardry:dark_aura_loop"]}, "spell.zombie_apocalypse.end": {"category": "spells", "sounds": ["ebwizardry:dark_aura_end"]}, + "spell.mirage": {"category": "spells", "sounds": ["ebwizardry:buff"]}, "forfeit.burn_self": {"category": "spells", "sounds": ["fire/ignite"]}, "forfeit.fireball": {"category": "spells", "sounds": ["mob/ghast/fireball4"]}, @@ -409,4 +410,4 @@ "forfeit.weaken_self": {"category": "spells", "sounds": ["mob/guardian/curse"]}, "forfeit.jam_self": {"category": "spells", "sounds": ["ebwizardry:effect1", "ebwizardry:effect2"]}, "forfeit.curse_self": {"category": "spells", "sounds": ["mob/guardian/curse"]} -} \ No newline at end of file +}