From e1cf43c8c1ddf13f10f39af695a21248672e6955 Mon Sep 17 00:00:00 2001 From: teascade Date: Tue, 16 May 2017 22:33:42 +0300 Subject: [PATCH] Fix docs --- Assets/Scripts/Items/Drive.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);