Updated for 5.4.5.

This commit is contained in:
sk89q 2012-11-03 12:58:04 -07:00
parent 14e283a1e9
commit d198961e12
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,6 @@
5.4.5:
- Fixed minor check issue with //center.
5.4.4:
- Added official support for Minecraft 1.4.
- Added support for 4096 ID blocks (theoretically) in snapshots.

View File

@ -49,12 +49,12 @@ import com.sk89q.worldedit.regions.RegionOperationException;
/**
* Region related commands.
*
*
* @author sk89q
*/
public class RegionCommands {
private final WorldEdit we;
public RegionCommands(WorldEdit we) {
this.we = we;
}
@ -97,7 +97,7 @@ public class RegionCommands {
@Logging(REGION)
public void replace(CommandContext args, LocalSession session, LocalPlayer player,
EditSession editSession) throws WorldEditException {
Set<BaseBlock> from;
Pattern to;
if (args.argsLength() == 1) {
@ -151,6 +151,7 @@ public class RegionCommands {
min = 1,
max = 1
)
@CommandPermissions("worldedit.region.center")
public void center(CommandContext args, LocalSession session, LocalPlayer player,
EditSession editSession) throws WorldEditException {
Pattern pattern = we.getBlockPattern(player, args.getString(0));
@ -211,7 +212,7 @@ public class RegionCommands {
@Logging(REGION)
public void faces(CommandContext args, LocalSession session, LocalPlayer player,
EditSession editSession) throws WorldEditException {
Pattern pattern = we.getBlockPattern(player, args.getString(0));
int affected;
if (pattern instanceof SingleBlockPattern) {
@ -238,7 +239,7 @@ public class RegionCommands {
@Logging(REGION)
public void smooth(CommandContext args, LocalSession session, LocalPlayer player,
EditSession editSession) throws WorldEditException {
int iterations = 1;
if (args.argsLength() > 0) {
iterations = args.getInteger(0);
@ -356,7 +357,7 @@ public class RegionCommands {
@Logging(REGION)
public void regenerateChunk(CommandContext args, LocalSession session, LocalPlayer player,
EditSession editSession) throws WorldEditException {
Region region = session.getSelection(player.getWorld());
Mask mask = session.getMask();
session.setMask(null);