Allow -g flag for setting the controllable to ground, -r flag for clearing

This commit is contained in:
fullwall 2012-10-15 21:04:15 +08:00
parent 7ba586c4c1
commit cdebf54e1a
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ public class Controllable extends Trait implements Toggleable, CommandConfigurab
public void configure(CommandContext args) {
if (args.hasFlag('f'))
explicitType = EntityType.BLAZE;
else if (args.hasFlag('n'))
else if (args.hasFlag('g'))
explicitType = EntityType.OCELOT;
else if (args.hasFlag('r'))
explicitType = null;
else if (args.hasValueFlag("explicittype"))
explicitType = Util.matchEntityType(args.getFlag("explicittype"));