From 0a44490acb265dd879a59863a1649a10d464d817 Mon Sep 17 00:00:00 2001 From: zumorica Date: Wed, 29 Apr 2020 13:56:38 +0200 Subject: [PATCH] Change fuel consumption back to normal --- .../GameObjects/Components/Interactable/ToolComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs b/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs index 86542343f6..56cf116eb4 100644 --- a/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/ToolComponent.cs @@ -40,7 +40,7 @@ namespace Content.Server.GameObjects.Components.Interactable /// /// Rate at which we expunge fuel from ourselves when activated /// - public const float FuelLossRate = 5f; // 0.2f + public const float FuelLossRate = 0.2f; #pragma warning disable 649 [Dependency] private IEntitySystemManager _entitySystemManager;