1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-11 07:37:56 -05:00

EMP Grenade: fix player perks not being disabled correctly

This commit is contained in:
Jbleezy
2023-05-10 12:24:11 -07:00
parent d404110155
commit cd9559b6e8

View File

@ -199,7 +199,7 @@ player_perk_pause_all_perks_acquired(time)
{
self waittill("perk_acquired");
wait 0.05;
wait 0.1;
self player_perk_pause_all_perks();
}
@ -268,7 +268,7 @@ player_perk_pause( perk )
}
}
self notify("perk_acquired");
self notify("perk_lost");
}
player_perk_unpause( perk )
@ -299,5 +299,5 @@ player_perk_unpause( perk )
}
}
self notify("perk_lost");
self notify("perk_acquired");
}