diff --git a/Assets/Scripts/Items/Drive.cs b/Assets/Scripts/Items/Drive.cs index f2409fb..5199100 100644 --- a/Assets/Scripts/Items/Drive.cs +++ b/Assets/Scripts/Items/Drive.cs @@ -99,10 +99,10 @@ namespace Cyber.Items { } /// - /// + /// Switches two slots at given indices, allowing moving items around the inventory. /// - /// - /// + /// The first index. + /// The second index. public void SwitchSlots(int idx1, int idx2) { Slot Slot1 = GetSlotAt(idx1); Slot Slot2 = GetSlotAt(idx2);