diff --git a/src/Episode3/PlayerState.cc b/src/Episode3/PlayerState.cc index cf26d307..25b3efb1 100644 --- a/src/Episode3/PlayerState.cc +++ b/src/Episode3/PlayerState.cc @@ -224,8 +224,7 @@ void PlayerState::apply_assist_card_effect_on_set( size_t log_index; for (log_index = 0; log_index < 0x10; log_index++) { - auto ce = s->definition_for_card_ref( - this->discard_log_card_refs[log_index]); + auto ce = s->definition_for_card_ref(this->discard_log_card_refs[log_index]); if (ce && ((ce->def.type == CardType::ITEM || ce->def.type == CardType::CREATURE))) { break; } diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index 11daaf7a..22139448 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -3859,7 +3859,7 @@ static void on_choice_search_t(shared_ptr c, const ChoiceSearchConfig& c auto& result = results.emplace_back(); result.guild_card_number = lc->license->serial_number; result.name.encode(lp->disp.name.decode(lc->language()), c->language()); - string info_string = string_printf("%s Lv%zu %s\n", + string info_string = string_printf("%s Lv%zu\n%s\n", name_for_char_class(lp->disp.visual.char_class), static_cast(lp->disp.stats.level + 1), abbreviation_for_section_id(lp->disp.visual.section_id));