Skip to content

Commit

Permalink
Remove debug messages from "Remove all ammo" effect
Browse files Browse the repository at this point in the history
  • Loading branch information
theastropath committed May 26, 2024
1 parent ab5c0dc commit f5d1898
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Classes/UT2k4CCEffects.uc
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,6 @@ function RemoveAllAmmoFromPawn(Pawn p)
{
local Inventory Inv;
for( Inv=p.Inventory; Inv!=None; Inv=Inv.Inventory ) {
PlayerController(p.Controller).ClientMessage("Inventory "$Inv);
if ( Ammunition(Inv) != None ) {
Ammunition(Inv).AmmoAmount = 0;
} else if (Weapon(Inv)!=None){
Expand Down

0 comments on commit f5d1898

Please sign in to comment.