From 113c8b8c317183199fec6414e1bbe2aa4897cc5b Mon Sep 17 00:00:00 2001 From: Ramza13 <52087122+Ramza13@users.noreply.github.com> Date: Wed, 25 Dec 2019 21:12:28 -0500 Subject: [PATCH] Changed narcopleptic to force sleep rather than lying down --- src/suffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/suffer.cpp b/src/suffer.cpp index 541e149fcb433..778af70ec33d6 100644 --- a/src/suffer.cpp +++ b/src/suffer.cpp @@ -304,7 +304,7 @@ void Character::suffer_while_awake( const int current_stim ) if( one_turn_in( 8_hours ) ) { add_msg( m_bad, _( "You're suddenly overcome with the urge to sleep and you pass out." ) ); - add_effect( effect_lying_down, 20_minutes ); + fall_asleep( 20_minutes ); } }