aboutsummaryrefslogtreecommitdiffstats
path: root/code/pawn/Player.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/pawn/Player.cs')
-rw-r--r--code/pawn/Player.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/code/pawn/Player.cs b/code/pawn/Player.cs
index 7073bb1..7254023 100644
--- a/code/pawn/Player.cs
+++ b/code/pawn/Player.cs
@@ -47,6 +47,7 @@ public partial class Player : AnimatedEntity
[BindComponent] public AnimatorComponent Animator { get; }
[BindComponent] public InventoryComponent Inventory { get; }
[BindComponent] public FallDamageComponent FallDamage { get; }
+ [BindComponent] public FootprintTrackerComponent FootprintTracker { get; }
[Net]
public Ragdoll PlayerRagdoll { get; set; }
@@ -179,6 +180,7 @@ public partial class Player : AnimatedEntity
Animator?.Simulate();
Inventory?.Simulate( cl );
FallDamage?.Simulate( cl );
+ FootprintTracker?.Simulate( cl );
if (Game.IsServer && Camera is not SpectatorCameraComponent && LifeState == LifeState.Dead && TimeSinceDeath > 3.5)
{