diff --git a/server/gameserver/bullet.cc b/server/gameserver/bullet.cc index cd8fd439..a078e26f 100644 --- a/server/gameserver/bullet.cc +++ b/server/gameserver/bullet.cc @@ -1181,7 +1181,8 @@ bool Bullet::IsClientHook() if (!sender.Get()->IsPlayer()) { return false; } - if (sender.Get()->GetNetData()->join_msg->proto_version() < 2023121501) { + if (sender.Get()->GetNetData()->join_msg->proto_version() > 0 && + sender.Get()->GetNetData()->join_msg->proto_version() < 2023121501) { return false; } else { return true; diff --git a/server/gameserver/creature.h b/server/gameserver/creature.h index 6081d9fb..59510c1e 100644 --- a/server/gameserver/creature.h +++ b/server/gameserver/creature.h @@ -18,6 +18,7 @@ enum CreatureStatus CS_Reviving, CS_DisableAttackAndroid, CS_NoDie, + CS_NoHpChgNotify, CS_End };