Replaced some incorrect instances of clip with magazine.

Add SMP 7243 from Oldskool to the BFG pool (toggleable).
Random fixarounds.
Spent mag models for the pistols, will be used (and backported to DT) soon.
This commit is contained in:
Marisa the Magician 2019-09-04 19:31:12 +02:00
commit bac59b45c1
31 changed files with 672 additions and 31 deletions

View file

@ -9,6 +9,13 @@ Class UTranslocatorAmmo : Ammo
Ammo.BackpackMaxAmount 2;
+INVENTORY.IGNORESKILL;
}
override void Tick()
{
Super.Tick();
if ( sting_telegun ) return;
if ( Owner ) Owner.RemoveInventory(self);
Destroy();
}
}
Class UTranslocator : UnrealWeapon
@ -18,6 +25,13 @@ Class UTranslocator : UnrealWeapon
if ( !sting_telegun ) return false; // not allowed
return Super.TryPickup(toucher);
}
override void Tick()
{
Super.Tick();
if ( sting_telegun ) return;
if ( Owner ) Owner.RemoveInventory(self);
Destroy();
}
Default
{
Tag "$T_TELEGUN";