Browse Source

custom range for booty sim command

lakebane-strongholds
FatBoy-DOTC 2 months ago
parent
commit
3b58ea716c
  1. 8
      src/engine/devcmd/cmds/SimulateBootyCmd.java

8
src/engine/devcmd/cmds/SimulateBootyCmd.java

@ -27,6 +27,14 @@ public class SimulateBootyCmd extends AbstractDevCmd { @@ -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;

Loading…
Cancel
Save