Fix notice board storage fill visuals (#24569)
This commit is contained in:
parent
e4f02c26c2
commit
a304e8eda2
|
|
@ -47,7 +47,7 @@ public sealed class StorageFillVisualizerSystem : EntitySystem
|
|||
if (!_appearance.TryGetData<int>(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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue