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:
parent
7aac50ef02
commit
330819da55
@ -148,6 +148,7 @@
|
|||||||
* Projectiles are no longer picked up by other players
|
* 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 weapon is not reloaded
|
||||||
* Projectiles can be picked up while the player is not on the ground
|
* Projectiles can be picked up while the player is not on the ground
|
||||||
|
* Projectiles get destroyed by lava
|
||||||
|
|
||||||
### Chicom CQB
|
### Chicom CQB
|
||||||
* Unupgraded: decreased clip ammo from 40 to 36
|
* Unupgraded: decreased clip ammo from 40 to 36
|
||||||
@ -483,6 +484,7 @@
|
|||||||
* Message shows when the meat is grabbed and landed on a player
|
* Message shows when the meat is grabbed and landed on a player
|
||||||
* Meleeing while the meat is moving no longer grabs the meat
|
* Meleeing while the meat is moving no longer grabs the meat
|
||||||
* Removed pick up trigger
|
* Removed pick up trigger
|
||||||
|
* Gets destroyed when thrown on lava
|
||||||
* Replaced with Richtofen's Head on Cell Block and Docks
|
* Replaced with Richtofen's Head on Cell Block and Docks
|
||||||
|
|
||||||
## Persistent Upgrades
|
## Persistent Upgrades
|
||||||
|
@ -33,6 +33,11 @@ on_spawn(watcher, player)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isDefined(level.object_touching_lava) && self [[level.object_touching_lava]]())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (isDefined(endpos))
|
if (isDefined(endpos))
|
||||||
{
|
{
|
||||||
retrievable_model = spawn("script_model", endpos);
|
retrievable_model = spawn("script_model", endpos);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user