Fixes some high speed item issues (#8361)

This commit is contained in:
keronshb
2022-05-23 19:11:17 -04:00
committed by GitHub
parent aa1b2feaf5
commit def4473ed2
5 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ namespace Content.Server.Damage.Components
[DataField("minimumSpeed")]
public float MinimumSpeed { get; set; } = 20f;
[DataField("factor")]
public float Factor { get; set; } = 1f;
public float Factor { get; set; } = 0.5f;
[DataField("soundHit", required: true)]
public SoundSpecifier SoundHit { get; set; } = default!;
[DataField("stunChance")]