From 994d6b9284b468b24010614a626d6c57241b4f57 Mon Sep 17 00:00:00 2001 From: Valiant Date: Fri, 21 Oct 2022 17:31:35 +0400 Subject: [PATCH] Activate towel that got wet from swimming --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index 0a335646446d8..a0347764be847 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -10879,7 +10879,7 @@ void game::water_affect_items( Character &ch ) const && !loc.protected_from_liquids() ) { wet.emplace_back( loc ); } else if( loc->typeId() == itype_towel && !loc.protected_from_liquids() ) { - loc->convert( itype_towel_wet ); + loc->convert( itype_towel_wet ).active = true; } }