From 9df40b8eb29b67d582470ff7cc902f3d80a2eaf0 Mon Sep 17 00:00:00 2001 From: Night Owl Date: Sat, 18 Nov 2017 16:48:22 +0500 Subject: [PATCH] Give new weapons in deathmatch. --- dlls/multiplay_gamerules.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/multiplay_gamerules.cpp b/dlls/multiplay_gamerules.cpp index 7922d413..dc63fc98 100644 --- a/dlls/multiplay_gamerules.cpp +++ b/dlls/multiplay_gamerules.cpp @@ -584,6 +584,8 @@ void CHalfLifeMultiplay::PlayerSpawn( CBasePlayer *pPlayer ) pPlayer->GiveNamedItem( "weapon_crowbar" ); pPlayer->GiveNamedItem( "weapon_9mmhandgun" ); pPlayer->GiveAmmo( 68, "9mm", _9MM_MAX_CARRY );// 4 full reloads + pPlayer->GiveNamedItem( "weapon_displacer" ); + pPlayer->GiveNamedItem( "weapon_eagle" ); } }