Cataclysm-dda: Finger scalpel missing dissection message.

Created on 3 Jan 2019  路  2Comments  路  Source: CleverRaven/Cataclysm-DDA

Unlike using pocket knifes, x-acto knife, or scalpel etc, finger scalpel cbm is missing it's unique message when dissecting a corpse. There is no message at all.

(S1 - Need confirmation) <Bug> Bionics Info / User Interface Items / Item Actions / Item Qualities

Most helpful comment

Simply add "case 5:" (because finger scalpel has 5 fine cutting)

case 3:
    u.add_msg_if_player( m_info, _( "You dissect the corpse with a trusty scalpel." ) );
    break;
case 5:
    u.add_msg_if_player( m_info, _( "My precious fingers! It's time to work, muah ha ha!" ) );
    break;

P.S. You could put any message you want.

All 2 comments

Simply add "case 5:" (because finger scalpel has 5 fine cutting)

case 3:
    u.add_msg_if_player( m_info, _( "You dissect the corpse with a trusty scalpel." ) );
    break;
case 5:
    u.add_msg_if_player( m_info, _( "My precious fingers! It's time to work, muah ha ha!" ) );
    break;

P.S. You could put any message you want.

Was this page helpful?
0 / 5 - 0 ratings