From 603f57042a3858eef193550569e67c9d4ffe7502 Mon Sep 17 00:00:00 2001 From: gastank <42421688+gastank@users.noreply.github.com> Date: Wed, 18 Sep 2024 08:39:14 -0700 Subject: [PATCH] [Gear] use properly tokenized name for ovinax's egg --- engine/player/unique_gear_thewarwithin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/player/unique_gear_thewarwithin.cpp b/engine/player/unique_gear_thewarwithin.cpp index 030504e675f..3ec5b2d7f9b 100644 --- a/engine/player/unique_gear_thewarwithin.cpp +++ b/engine/player/unique_gear_thewarwithin.cpp @@ -1606,7 +1606,7 @@ void ovinaxs_mercurial_egg( special_effect_t& effect ) { auto stat_str = util::stat_type_abbrev( secondary_ratings[ i ] ); auto spell = effect.player->find_spell( buff_ids[ i ] ); - auto name = fmt::format( "{}_{}", spell->name_cstr(), stat_str ); + auto name = fmt::format( "{}_{}", util::tokenize_fn( spell->name_cstr() ), stat_str ); auto buff = create_buff( effect.player, name, spell, data ); buff->set_stat_from_effect_type( A_MOD_RATING, data->effectN( 2 ).average( effect ) )