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

Meat: remove groundpos powerup spawn

This commit is contained in:
Jbleezy
2023-02-26 18:30:15 -08:00
parent 3decf68288
commit 19dff22ae1
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,8 @@ meat_stink_on_ground(position_to_play)
player thread show_grief_hud_msg("Meat dropped!");
}
level.meat_powerup = maps\mp\zombies\_zm_powerups::specific_powerup_drop( "meat_stink", groundpos(position_to_play) );
level.meat_powerup = maps\mp\zombies\_zm_powerups::specific_powerup_drop( "meat_stink", position_to_play );
return;
}

View File

@ -3158,7 +3158,7 @@ meat_powerup_drop_on_downed()
player thread show_grief_hud_msg("Meat dropped!");
}
level.meat_powerup = maps\mp\zombies\_zm_powerups::specific_powerup_drop( "meat_stink", groundpos(self.origin) );
level.meat_powerup = maps\mp\zombies\_zm_powerups::specific_powerup_drop( "meat_stink", self.origin );
}
}