From 1ad1db690ccb6f0979b9c5dd2e5460ba440560e5 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 11 Oct 2024 14:45:02 +0800 Subject: [PATCH] 1 --- server/gameserver/human.cc | 2 ++ 1 file changed, 2 insertions(+) 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()