mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-03 00:12:03 +00:00
Fixed ammo and backpack with local items on
Now avoids duplicate calling CreateCopy
This commit is contained in:
parent
a7d4d409a0
commit
fdd2a90545
1 changed files with 6 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue