diff --git a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp index f94a8c59d0..9a8a2c1bc1 100644 --- a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp @@ -128,9 +128,11 @@ namespace Multiplayer for (NetworkEntityHandle entityHandle : m_rewoundEntities) { - NetBindComponent* netBindComponent = entityHandle.GetNetBindComponent(); + if (NetBindComponent* netBindComponent = entityHandle.GetNetBindComponent()) + { netBindComponent->NotifySyncRewindState(); } + } m_rewoundEntities.clear(); } }