From ae50e6631f49a706d050cdcce8093b7488ad55f4 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Fri, 16 Jun 2023 09:52:49 -0500 Subject: [PATCH] Test a webhook commit. --- Crawler/Monster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crawler/Monster.cpp b/Crawler/Monster.cpp index 882edc53..4544c5ca 100644 --- a/Crawler/Monster.cpp +++ b/Crawler/Monster.cpp @@ -308,7 +308,7 @@ AnimationState Monster::GetDeathAnimationName(){ return AnimationState::IDLE_S; } } -} +} bool Monster::Hurt(int damage){ if(hp<=0) return false; hp=std::max(0,hp-damage);