From 54d68fefda98906b1b9e92dcf59479a70077dd6d Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 19 Apr 2023 19:00:28 +0800 Subject: [PATCH] 1 --- server/gameserver/constant.h | 2 ++ server/gameserver/human.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/server/gameserver/constant.h b/server/gameserver/constant.h index 850026e1..17709d8e 100644 --- a/server/gameserver/constant.h +++ b/server/gameserver/constant.h @@ -244,6 +244,8 @@ enum PropertyType_e kProTeamNum = 43, kPropTeamId = 44, kPropTzYsTime = 45, + + kPropGuideStep = 46, }; enum SkinSlot_e diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 923df11c..455aac96 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -91,7 +91,7 @@ Human::Human():Creature() } stats = std::make_shared(); guide_ = std::make_shared(); - guild_->Init(this); + guide_->Init(this); } Human::~Human()