From 3b58ea716cc32def85edfd7553c48c6aa94a1ccb Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Sat, 31 Aug 2024 16:28:34 -0500 Subject: [PATCH] custom range for booty sim command --- src/engine/devcmd/cmds/SimulateBootyCmd.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/engine/devcmd/cmds/SimulateBootyCmd.java b/src/engine/devcmd/cmds/SimulateBootyCmd.java index 76cb6d68..227660e7 100644 --- a/src/engine/devcmd/cmds/SimulateBootyCmd.java +++ b/src/engine/devcmd/cmds/SimulateBootyCmd.java @@ -27,6 +27,14 @@ public class SimulateBootyCmd extends AbstractDevCmd { String output; + try + { + simCount = Integer.parseInt(words[0]); + }catch(Exception e) + { + + } + output = "Booty Simulation: Rolls:" + simCount + newline; Mob mob = (Mob) target;