Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Content.Shared/Ame/Components/AmeFuelContainerComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ public sealed partial class AmeFuelContainerComponent : Component
/// The amount of fuel in the container.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
public int FuelAmount = 1000;
public int FuelAmount = 10000;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public int FuelAmount = 10000;
public int FuelAmount = 1000;

Just set this on the AME jar prototype, it's a datafield. Like this: fuelAmount


/// <summary>
/// The maximum fuel capacity of the container.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
public int FuelCapacity = 1000;
public int FuelCapacity = 10000;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public int FuelCapacity = 10000;
public int FuelCapacity = 1000;

Ditto.

}
Loading