From 7fa9867a2fa1d2d4afc72c4eed694739dba64570 Mon Sep 17 00:00:00 2001 From: CodeBandit <63547126+CodeBandit@users.noreply.github.com> Date: Sat, 9 May 2020 12:22:11 -0400 Subject: [PATCH] Reduce calorie message spam to once every 12 hours --- src/character.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/character.cpp b/src/character.cpp index c7b6c2909ddce..7b3ef3b263fd5 100644 --- a/src/character.cpp +++ b/src/character.cpp @@ -4978,7 +4978,7 @@ void Character::check_needs_extremes() g->events().send( getID() ); hp_cur[hp_torso] = 0; } else { - if( calendar::once_every( 1_hours ) ) { + if( calendar::once_every( 12_hours ) ) { std::string category; if( stomach.contains() <= stomach.capacity( *this ) / 4 ) { if( get_kcal_percent() < 0.1f ) {