Fix Speedloader Partial Reload (#32396)
This commit is contained in:
@@ -130,7 +130,7 @@ public partial class SharedGunSystem
|
||||
return false;
|
||||
}
|
||||
|
||||
for (var i = Math.Min(ev.Ammo.Count - 1, component.Capacity - 1); i >= 0; i--)
|
||||
for (var i = 0; i < component.Capacity; i++)
|
||||
{
|
||||
var index = (component.CurrentIndex + i) % component.Capacity;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user