diff --git a/Content/Assets/NewTargetSystem/Targets_BP.uasset b/Content/Assets/NewTargetSystem/Targets_BP.uasset index 284656b..43fea5e 100644 --- a/Content/Assets/NewTargetSystem/Targets_BP.uasset +++ b/Content/Assets/NewTargetSystem/Targets_BP.uasset Binary files differ diff --git a/Content/Assets/NormieAsset/MainPlane_BP.uasset b/Content/Assets/NormieAsset/MainPlane_BP.uasset index 32e6266..b95f603 100644 --- a/Content/Assets/NormieAsset/MainPlane_BP.uasset +++ b/Content/Assets/NormieAsset/MainPlane_BP.uasset Binary files differ diff --git a/Content/Assets/Projectiles/Projectile_BP.uasset b/Content/Assets/Projectiles/Projectile_BP.uasset index 50ae787..f44ad08 100644 --- a/Content/Assets/Projectiles/Projectile_BP.uasset +++ b/Content/Assets/Projectiles/Projectile_BP.uasset Binary files differ diff --git a/Content/Levels/StartMap.umap b/Content/Levels/StartMap.umap index ffdae73..d5e80d5 100644 --- a/Content/Levels/StartMap.umap +++ b/Content/Levels/StartMap.umap Binary files differ diff --git a/Content/MSPresets/MS_DefaultMaterial_CP/MS_DefaultMaterial_CP.uasset b/Content/MSPresets/MS_DefaultMaterial_CP/MS_DefaultMaterial_CP.uasset index 67ad491..fc96ebb 100644 --- a/Content/MSPresets/MS_DefaultMaterial_CP/MS_DefaultMaterial_CP.uasset +++ b/Content/MSPresets/MS_DefaultMaterial_CP/MS_DefaultMaterial_CP.uasset Binary files differ diff --git a/Content/MSPresets/MS_DefaultMaterial_Fuzzy/MS_DefaultMaterial_Fuzzy.uasset b/Content/MSPresets/MS_DefaultMaterial_Fuzzy/MS_DefaultMaterial_Fuzzy.uasset index 5837798..fae491c 100644 --- a/Content/MSPresets/MS_DefaultMaterial_Fuzzy/MS_DefaultMaterial_Fuzzy.uasset +++ b/Content/MSPresets/MS_DefaultMaterial_Fuzzy/MS_DefaultMaterial_Fuzzy.uasset Binary files differ diff --git a/Content/Megascans/3D_Assets/Gigantic_Sandstone_Terrain_vfgjfag/Gigantic_Sandstone_Terrain_vfgjfag_inst.uasset b/Content/Megascans/3D_Assets/Gigantic_Sandstone_Terrain_vfgjfag/Gigantic_Sandstone_Terrain_vfgjfag_inst.uasset index 9345a69..12f2109 100644 --- a/Content/Megascans/3D_Assets/Gigantic_Sandstone_Terrain_vfgjfag/Gigantic_Sandstone_Terrain_vfgjfag_inst.uasset +++ b/Content/Megascans/3D_Assets/Gigantic_Sandstone_Terrain_vfgjfag/Gigantic_Sandstone_Terrain_vfgjfag_inst.uasset Binary files differ diff --git a/Content/NunoContent/Menus/Widgets/MainMenu_Widget.uasset b/Content/NunoContent/Menus/Widgets/MainMenu_Widget.uasset index d61da2c..7fda043 100644 --- a/Content/NunoContent/Menus/Widgets/MainMenu_Widget.uasset +++ b/Content/NunoContent/Menus/Widgets/MainMenu_Widget.uasset Binary files differ diff --git a/Content/NunoContent/UI/InGame.uasset b/Content/NunoContent/UI/InGame.uasset index 76cf6c6..4d77d70 100644 --- a/Content/NunoContent/UI/InGame.uasset +++ b/Content/NunoContent/UI/InGame.uasset Binary files differ diff --git a/Content/ScoreGameMode_BP.uasset b/Content/ScoreGameMode_BP.uasset index 7412981..76d5ad6 100644 --- a/Content/ScoreGameMode_BP.uasset +++ b/Content/ScoreGameMode_BP.uasset Binary files differ diff --git a/Source/SkyFrontier/Private/DamageSystem.cpp b/Source/SkyFrontier/Private/DamageSystem.cpp index fa034bd..43ba125 100644 --- a/Source/SkyFrontier/Private/DamageSystem.cpp +++ b/Source/SkyFrontier/Private/DamageSystem.cpp @@ -5,7 +5,7 @@ { PrimaryComponentTick.bCanEverTick = false; PrimaryComponentTick.bStartWithTickEnabled = false; - SetIsReplicated(true); + SetIsReplicatedByDefault(true); ShootingDamage = 20; MissileDamage = 50; } diff --git a/Source/SkyFrontier/Private/HealthSystem.cpp b/Source/SkyFrontier/Private/HealthSystem.cpp index f15c573..52da4ff 100644 --- a/Source/SkyFrontier/Private/HealthSystem.cpp +++ b/Source/SkyFrontier/Private/HealthSystem.cpp @@ -7,7 +7,7 @@ { PrimaryComponentTick.bCanEverTick = false; PrimaryComponentTick.bStartWithTickEnabled = false; - SetIsReplicated(true); + SetIsReplicatedByDefault(true); MaxHealth = 100; } diff --git a/Source/SkyFrontier/Private/PointsComponent.cpp b/Source/SkyFrontier/Private/PointsComponent.cpp index c950c74..9da3d82 100644 --- a/Source/SkyFrontier/Private/PointsComponent.cpp +++ b/Source/SkyFrontier/Private/PointsComponent.cpp @@ -5,7 +5,7 @@ { PrimaryComponentTick.bCanEverTick = false; PrimaryComponentTick.bStartWithTickEnabled = false; - SetIsReplicated(true); + SetIsReplicatedByDefault(true); } void UPointsComponent::BeginPlay()