diff options
Diffstat (limited to 'code/entity')
| -rw-r--r-- | code/entity/DroppedWeapon.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/entity/DroppedWeapon.cs b/code/entity/DroppedWeapon.cs index f0cad67..0cea7da 100644 --- a/code/entity/DroppedWeapon.cs +++ b/code/entity/DroppedWeapon.cs @@ -27,7 +27,7 @@ public partial class DroppedWeapon : AnimatedEntity if ( !Game.IsServer ) return;
if ( !other.Tags.Has( "livingplayer" ) ) return;
- MurderGame.Player player = (MurderGame.Player)other;
+ MurderGame.Player player = (MurderGame.Player)other;
if ( player.Inventory == null || player.Inventory.PrimaryWeapon != null || !player.Inventory.AllowPickup) return;
|
