diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 291b3f03..f6613c98 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -45,6 +45,7 @@ #include "bornpoint.h" #include "ingamevoice.h" #include "boxdrop.h" +#include "bag.h" #include "buff/sprint.h" @@ -96,6 +97,7 @@ Human::Human():Creature() AddInventory(IS_ICE, FIGHTING_MODE_BULLET_NUM); } stats = std::make_shared(); + bag_ = std::make_shared(); } Human::~Human()