diff --git a/src/scenario/monster.cpp b/src/scenario/monster.cpp index 1c7af6db..decfa956 100644 --- a/src/scenario/monster.cpp +++ b/src/scenario/monster.cpp @@ -709,7 +709,7 @@ std::string uAbility::to_string(eMonstAbil key) const { } break; } - sout << " (" << summon.chance << "% chance)"; + sout << " (" << std::fixed << std::setprecision(1) << double(summon.chance) / 10 << "% chance)"; break; case eMonstAbilCat::RADIATE: sout << "Radiates ";