From 3ebf42705e4292cafcdde0631df146cec3b21170 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Mon, 23 Oct 2023 17:49:13 -0400 Subject: [PATCH] Fix EXP. Share using wrong icon --- src/modifier/modifier-type.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 3f87fb2afd7..84ee83ea192 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -617,8 +617,8 @@ export const modifierTypes = { TM_GREAT: () => new TmModifierTypeGenerator(ModifierTier.GREAT), TM_ULTRA: () => new TmModifierTypeGenerator(ModifierTier.ULTRA), - EXP_SHARE: () => new ModifierType('EXP. All', 'Non-participants gain 20% of a single participant\'s EXP. Points', - (type, _args) => new Modifiers.ExpShareModifier(type)), + EXP_SHARE: () => new ModifierType('EXP. All', 'Non-participants receive 20% of a single participant\'s EXP. Points', + (type, _args) => new Modifiers.ExpShareModifier(type), 'exp_share'), EXP_BALANCE: () => new ModifierType('EXP. Balance', 'All EXP. Points received from battles are split between the lower leveled party members', (type, _args) => new Modifiers.ExpBalanceModifier(type)),