From 81fe6c4e2afe7d522a5be7629650c449fd615652 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Sat, 5 Aug 2023 19:42:26 -0400 Subject: [PATCH] Removed integer input. --- src/engine/devcmd/cmds/SimulateBootyCmd.java | 22 -------------------- 1 file changed, 22 deletions(-) diff --git a/src/engine/devcmd/cmds/SimulateBootyCmd.java b/src/engine/devcmd/cmds/SimulateBootyCmd.java index 479834e5..37c3e398 100644 --- a/src/engine/devcmd/cmds/SimulateBootyCmd.java +++ b/src/engine/devcmd/cmds/SimulateBootyCmd.java @@ -18,33 +18,11 @@ public class SimulateBootyCmd extends AbstractDevCmd { protected void _doCmd(PlayerCharacter playerCharacter, String[] words, AbstractGameObject target) { - // Arg Count Check - - if (words.length != 1) { - this.sendUsage(playerCharacter); - return; - } - if (playerCharacter == null) return; String newline = "\r\n "; - int targetID = Integer.parseInt(words[0]); - Mob mobile = Mob.getMob(targetID); - - if (mobile == null) - throwbackError(playerCharacter, "Mobile with ID " + targetID - + " not found"); - else - target = mobile; - - - if (target == null) { - throwbackError(playerCharacter, "Select or supply valid mobile uuid"); - return; - } - String output; output = "Booty Simulation:" + newline;