|
|
|
@ -1204,7 +1204,8 @@ namespace EsmTool
|
|
|
|
|
std::array<std::string_view, 10> weathers
|
|
|
|
|
= { "Clear", "Cloudy", "Fog", "Overcast", "Rain", "Thunder", "Ash", "Blight", "Snow", "Blizzard" };
|
|
|
|
|
for (size_t i = 0; i < weathers.size(); ++i)
|
|
|
|
|
std::cout << " " << weathers[i] << ": " << mData.mData.mProbabilities[i] << std::endl;
|
|
|
|
|
std::cout << " " << weathers[i] << ": " << static_cast<unsigned>(mData.mData.mProbabilities[i])
|
|
|
|
|
<< std::endl;
|
|
|
|
|
std::cout << " Map Color: " << mData.mMapColor << std::endl;
|
|
|
|
|
if (!mData.mSleepList.empty())
|
|
|
|
|
std::cout << " Sleep List: " << mData.mSleepList << std::endl;
|
|
|
|
|