From f41e74d5c402a68d1cbf10b70f79b2c124dd6fc3 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 12 Apr 2021 11:08:15 +0800 Subject: [PATCH] 1 --- server/gameserver/incubator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/gameserver/incubator.h b/server/gameserver/incubator.h index 0cc9b9b..95359bf 100644 --- a/server/gameserver/incubator.h +++ b/server/gameserver/incubator.h @@ -9,7 +9,8 @@ class Incubator void Init(); void UnInit(); + void AddHoldHuman(Human* num); private: - std::list hold_humans_; + std::set hold_humans_; };