summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2011-07-28 01:15:47 +0100
committerKHobbits <rob@khobbits.co.uk>2011-07-28 01:15:47 +0100
commit4c610d2a02c3f9a7addf3c86386f8c5214b72d4d (patch)
tree1ca8a309d63edb727eb5f22f44b36b275630a81c
parent23e59178e68e89d82614bacecaf93d42bf89693b (diff)
downloadEssentials-4c610d2a02c3f9a7addf3c86386f8c5214b72d4d.tar
Essentials-4c610d2a02c3f9a7addf3c86386f8c5214b72d4d.tar.gz
Essentials-4c610d2a02c3f9a7addf3c86386f8c5214b72d4d.tar.lz
Essentials-4c610d2a02c3f9a7addf3c86386f8c5214b72d4d.tar.xz
Essentials-4c610d2a02c3f9a7addf3c86386f8c5214b72d4d.zip
adding sheep:random to /spawnmob
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java b/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java
index a2af502ee..86d2beac4 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandspawnmob.java
@@ -7,6 +7,7 @@ import com.earth2me.essentials.Mob;
import com.earth2me.essentials.Mob.MobException;
import com.earth2me.essentials.TargetBlock;
import com.earth2me.essentials.Util;
+import java.util.Random;
import net.minecraft.server.EntityWolf;
import net.minecraft.server.PathEntity;
import org.bukkit.DyeColor;
@@ -207,7 +208,15 @@ public class Commandspawnmob extends EssentialsCommand
{
try
{
- ((CraftSheep)spawned).setColor(DyeColor.valueOf(data.toUpperCase()));
+ if (data.equalsIgnoreCase("random"))
+ {
+ Random rand = new Random();
+ ((CraftSheep)spawned).setColor(DyeColor.values()[rand.nextInt(DyeColor.values().length)]);
+ }
+ else
+ {
+ ((CraftSheep)spawned).setColor(DyeColor.valueOf(data.toUpperCase()));
+ }
}
catch (Exception e)
{