diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 185ecb2..355c12c 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -2376,7 +2376,7 @@ void Human::FreeReviveTimer() void Human::RandSkin() { std::vector ids = {1, 2, 3, 4, 5, 6}; - for (int i = 0; i < 3; ++i) { + for (int i = 0; i < 4; ++i) { int rand_idx = rand() % ids.size(); Skin& skin = a8::FastAppend(skins); skin.skin_id = ids[rand_idx];