Skip to content

Commit

Permalink
Give VIP default items again
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTadeusz committed Sep 21, 2024
1 parent dd0f760 commit 04b1046
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mp/src/game/server/neo/neo_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2620,8 +2620,13 @@ void CNEO_Player::GiveDefaultItems(void)
GiveNamedItem("weapon_smokegrenade");
Weapon_Switch(Weapon_OwnsThisType("weapon_kyla"));
break;
case NEO_CLASS_VIP:
GiveNamedItem("weapon_milso");
Weapon_Switch(Weapon_OwnsThisType("weapon_milso"));
break;
default:
GiveNamedItem("weapon_knife");
Weapon_Switch(Weapon_OwnsThisType("weapon_knife"));
break;
}
}
Expand Down

0 comments on commit 04b1046

Please sign in to comment.