Test a webhook commit.

This commit is contained in:
sigonasr2 2023-06-16 09:52:49 -05:00
parent 0718150cd0
commit ae50e6631f

View File

@ -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);