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

Meat: hide obj waypoint for meat player

This commit is contained in:
Jbleezy
2023-03-12 18:06:52 -07:00
parent 4419a0f408
commit e880a17390

View File

@ -3052,7 +3052,11 @@ meat_think()
foreach (player in players)
{
if (player != level.meat_player)
if (player == level.meat_player)
{
player.obj_waypoint.alpha = 0;
}
else
{
player.obj_waypoint.alpha = 1;