From 4424a6fc3904bbddffbdaaadc9d614fdd4aaf220 Mon Sep 17 00:00:00 2001 From: Aidan Schieuer Date: Thu, 23 Apr 2026 10:27:53 -0500 Subject: [PATCH] revert a change to make way for PARLOR CHAIRS --- .../main/core/game/system/command/sets/TeleportCommandSet.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/src/main/core/game/system/command/sets/TeleportCommandSet.kt b/Server/src/main/core/game/system/command/sets/TeleportCommandSet.kt index 0f45f3766..30e4107c9 100644 --- a/Server/src/main/core/game/system/command/sets/TeleportCommandSet.kt +++ b/Server/src/main/core/game/system/command/sets/TeleportCommandSet.kt @@ -142,8 +142,8 @@ class TeleportCommandSet : CommandSet(Privilege.ADMIN){ /** * Finds a list of objects/sceneries in a region */ - define("findobjs", Privilege.ADMIN, "::findobjs REGION ID SCENERY ID START SCENERY ID END", "Finds all locations of scenery objects of id."){player, args -> - if(args.size < 4) reject(player, "Usage: region_id scenery_id_start scenery_id_end") + define("findobjs", Privilege.ADMIN, "::findobjs REGION ID SCENERY ID", "Finds all locations of scenery objects of id."){player, args -> + if(args.size < 4) reject(player, "Usage: region_id scenery_id") val regionId = args[1].toInt() val sceneryId = args[2].toInt() val sceneryIdEnd = args[3].toInt()