1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 23:27:57 -05:00

Time Bomb: fix being replaced by melee weapon

Time Bomb: decrease raise time
Ballistic Knife: decrease melee time
Add MOTD melee weapons to zone_source
This commit is contained in:
Jbleezy
2023-12-23 02:23:52 -08:00
parent 18ef6375c4
commit 30b2e08d67
11 changed files with 18 additions and 8 deletions

View File

@ -172,7 +172,11 @@ change_melee_weapon(weapon_name, current_weapon)
}
self giveweapon("held_" + weapon_name);
self setactionslot(2, "weapon", "held_" + weapon_name);
if (!self hasweapon("time_bomb_zm") && !self hasweapon("time_bomb_detonator_zm"))
{
self setactionslot(2, "weapon", "held_" + weapon_name);
}
return current_weapon;
}