Added per-group block change limits.

This commit is contained in:
sk89q
2010-11-06 00:51:35 -07:00
parent 5fc97f0f7d
commit 4740501a1e
3 changed files with 163 additions and 3 deletions

View File

@ -438,4 +438,13 @@ public class WorldEditPlayer {
loc.rotY = (float) pitch;
player.teleportTo(loc);
}
/**
* Get a player's list of groups.
*
* @return
*/
public String[] getGroups() {
return player.getGroups();
}
}