Fix for Jenkins Validation: removing tabs and removing unwanted spaces.
This commit is contained in:
@@ -70,7 +70,7 @@ namespace Multiplayer
|
||||
}
|
||||
return netBindComponent->IsNetEntityRoleAuthority();
|
||||
})
|
||||
|
||||
|
||||
->Method("IsNetEntityRoleAutonomous", [](AZ::EntityId id) -> bool {
|
||||
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
|
||||
if (!entity)
|
||||
@@ -87,7 +87,7 @@ namespace Multiplayer
|
||||
}
|
||||
return netBindComponent->IsNetEntityRoleAutonomous();
|
||||
})
|
||||
|
||||
|
||||
->Method("IsNetEntityRoleClient", [](AZ::EntityId id) -> bool {
|
||||
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
|
||||
if (!entity)
|
||||
@@ -104,8 +104,8 @@ namespace Multiplayer
|
||||
}
|
||||
return netBindComponent->IsNetEntityRoleClient();
|
||||
})
|
||||
|
||||
->Method("IsNetEntityRoleServer", [](AZ::EntityId id) -> bool {
|
||||
|
||||
->Method("IsNetEntityRoleServer", [](AZ::EntityId id) -> bool {
|
||||
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
|
||||
if (!entity)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user