From a3df4f035f8886104f8af1ea7329aadb49a3354d Mon Sep 17 00:00:00 2001 From: ceikry Date: Tue, 13 Jul 2021 17:01:26 -0500 Subject: [PATCH] Improved the ::ge command --- .../main/kotlin/rs09/game/system/command/sets/MiscCommandSet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/system/command/sets/MiscCommandSet.kt b/Server/src/main/kotlin/rs09/game/system/command/sets/MiscCommandSet.kt index 6372c9597..719af0571 100644 --- a/Server/src/main/kotlin/rs09/game/system/command/sets/MiscCommandSet.kt +++ b/Server/src/main/kotlin/rs09/game/system/command/sets/MiscCommandSet.kt @@ -561,7 +561,7 @@ class MiscCommandSet : CommandSet(Command.Privilege.ADMIN){ val sellList = sellingMap.map { (name, amount) -> "[Selling] $name - $amount" }.sortedBy { it.length }.toMutableList() sellList.reverse() - sellList.add(" ") + sellList.add(" ") sellList.reverse() SystemLogger.logInfo("bl: ${buyList.size} sl: ${sellList.size}")