From f18c8733d06d89ed266371eb3c5b163f02151896 Mon Sep 17 00:00:00 2001 From: Salanto Date: Tue, 16 Mar 2021 23:59:12 +0100 Subject: [PATCH] Negative numbers not needed. --- src/commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 9519169..1ee0c3c 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1039,8 +1039,8 @@ void AOClient::cmdEvidence_Swap(int argc, QStringList argv) { AreaData* area = server->areas[current_area]; bool ok, ok2; // This is btw a perfectly valid way to declare. - int EvID1 = argv[0].toInt(&ok), EvID2 = argv[1].toInt(&ok2); - int EvSize = area->evidence.size()-1; + uint EvID1 = argv[0].toInt(&ok), EvID2 = argv[1].toInt(&ok2); + uint EvSize = area->evidence.size()-1; if ((ok && ok2) && (EvID2 <= EvSize) && (EvID1 <= EvSize)) { AreaData::Evidence EvData = area->evidence[EvID1]; area->evidence[EvID1] = area->evidence[EvID2];