Fixes jetpacks not shutting off on lack of fuel (#9206)

* Push

* tolerance and reduced moles

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
Júlio César Ueti
2022-06-27 01:36:20 -03:00
committed by GitHub
parent a73a6042d7
commit 2ae4e80732
2 changed files with 2 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ namespace Content.Shared.Movement.Components;
public sealed class JetpackComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("moleUsage")]
public float MoleUsage = 0.048f;
public float MoleUsage = 0.012f;
[ViewVariables, DataField("toggleAction", required: true)]
public InstantAction ToggleAction = new();