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;