From 3e8421016c29f7fa12a65b911185f95699d5b1fa Mon Sep 17 00:00:00 2001 From: marilynias Date: Tue, 21 Jan 2025 09:57:27 +0100 Subject: [PATCH] fix wrong delta --- src/character_body.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/character_body.cpp b/src/character_body.cpp index 7cb2ae003a532..8cb8e4e9d6752 100644 --- a/src/character_body.cpp +++ b/src/character_body.cpp @@ -811,7 +811,7 @@ void Character::update_bodytemp() add_msg( m_bad, _( "The wind is very strong; you should find some more wind-resistant clothing for your %s." ), body_part_name( bp ) ); - } else if( conv_temp <= BODYTEMP_COLD && windchill < units::from_kelvin_delta( -30 ) && + } else if( conv_temp <= BODYTEMP_COLD && windchill < units::from_fahrenheit_delta( -30 ) && one_in( 50 ) ) { add_msg( m_bad, _( "Your clothing is not providing enough protection from the wind for your %s!" ), body_part_name( bp ) );