1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00

Ballistic Knife: projectiles get destroyed on lava

This commit is contained in:
Jbleezy 2023-12-22 23:43:50 -08:00
parent 7aac50ef02
commit 330819da55
2 changed files with 7 additions and 0 deletions

View File

@ -148,6 +148,7 @@
* Projectiles are no longer picked up by other players
* Projectiles can be picked up while the weapon is not reloaded
* Projectiles can be picked up while the player is not on the ground
* Projectiles get destroyed by lava
### Chicom CQB
* Unupgraded: decreased clip ammo from 40 to 36
@ -483,6 +484,7 @@
* Message shows when the meat is grabbed and landed on a player
* Meleeing while the meat is moving no longer grabs the meat
* Removed pick up trigger
* Gets destroyed when thrown on lava
* Replaced with Richtofen's Head on Cell Block and Docks
## Persistent Upgrades

View File

@ -33,6 +33,11 @@ on_spawn(watcher, player)
return;
}
if (isDefined(level.object_touching_lava) && self [[level.object_touching_lava]]())
{
return;
}
if (isDefined(endpos))
{
retrievable_model = spawn("script_model", endpos);