diff --git a/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs b/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs index 01ed9a13dc..04894461ed 100644 --- a/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs @@ -47,7 +47,7 @@ public sealed class StorageFillVisualizerSystem : EntitySystem if (!_appearance.TryGetData(uid, StorageVisuals.Capacity, out var capacity, appearance)) return; - var level = ContentHelpers.RoundToEqualLevels(used, capacity, component.MaxFillLevels); + var level = ContentHelpers.RoundToLevels(used, capacity, component.MaxFillLevels); _appearance.SetData(uid, StorageFillVisuals.FillLevel, level, appearance); } }