Fixed ammo and backpack with local items on

Now avoids duplicate calling CreateCopy
This commit is contained in:
Boondorl 2025-02-14 13:20:03 -05:00 committed by Rachael Alexanderson
parent a7d4d409a0
commit fdd2a90545

View file

@ -138,6 +138,9 @@ class Ammo : Inventory
override Inventory CreateCopy (Actor other)
{
if (IsCreatingLocalCopy())
return Super.CreateCopy(other);
Inventory copy;
int amount = Amount;
@ -250,6 +253,9 @@ class BackpackItem : Inventory
override Inventory CreateCopy (Actor other)
{
if (IsCreatingLocalCopy())
return Super.CreateCopy(other);
// Find every unique type of ammoitem. Give it to the player if
// he doesn't have it already, and double its maximum capacity.
uint end = AllActorClasses.Size();