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

Buried: add collision at Jug corner

This commit is contained in:
Jbleezy
2021-12-18 15:57:51 -08:00
parent cd7d26ee26
commit 522a08ac03
2 changed files with 17 additions and 0 deletions

View File

@ -225,6 +225,7 @@
* Ghosts no longer spawn a free perk powerup if any player gets damaged by the ghosts * Ghosts no longer spawn a free perk powerup if any player gets damaged by the ghosts
* Fountain portal automatically active * Fountain portal automatically active
* Navcard table automatically crafted * Navcard table automatically crafted
* Players can no longer get into the corner next to Juggernog
#### Borough #### Borough
* Tunnels disabled * Tunnels disabled

View File

@ -6,5 +6,21 @@
main() main()
{ {
precachemodel( "collision_wall_128x128x10_standard" );
//replaceFunc(maps/mp/zombies/_zm_equip_subwoofer::startsubwooferdecay, scripts/zm/replaced/_zm_equip_subwoofer::startsubwooferdecay); //replaceFunc(maps/mp/zombies/_zm_equip_subwoofer::startsubwooferdecay, scripts/zm/replaced/_zm_equip_subwoofer::startsubwooferdecay);
}
init()
{
add_jug_collision();
}
add_jug_collision()
{
origin = (-664, 1050, 8);
angles = ( 0, 0, 0 );
collision = spawn( "script_model", origin + anglesToUp(angles) * 64 );
collision.angles = angles;
collision setmodel( "collision_wall_128x128x10_standard" );
} }