From 0d44f183c27b358d073e12905f75894beee488e9 Mon Sep 17 00:00:00 2001 From: Muffindrake Date: Thu, 30 Jan 2020 16:36:26 +0100 Subject: [PATCH] Bugfix message wearing UNDERSIZEd things as Tiny --- src/character.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/character.cpp b/src/character.cpp index fdd4dc70270c5..52c6a86b17161 100644 --- a/src/character.cpp +++ b/src/character.cpp @@ -1450,7 +1450,7 @@ cata::optional::iterator> Character::wear_item( const item &to_w add_msg_if_player( m_warning, _( "This %s is too big to wear comfortably! Maybe it could be refitted." ), to_wear.tname() ); - } else if( to_wear.has_flag( "UNDERSIZE" ) ) { + } else if( !supertinymouse && to_wear.has_flag( "UNDERSIZE" ) ) { add_msg_if_player( m_warning, _( "This %s is too small to wear comfortably! Maybe it could be refitted." ), to_wear.tname() );