Whitespace fixes, reactivated command adjustments

This commit is contained in:
zml2008 2012-03-17 15:17:49 -07:00
parent d2968b1976
commit 7f7178957a
3 changed files with 14 additions and 8 deletions

View File

@ -29,6 +29,7 @@ import org.spout.api.geo.World;
import org.spout.api.geo.cuboid.Block;
import org.spout.api.geo.discrete.Point;
import org.spout.api.material.block.BlockFace;
import org.spout.api.math.MathHelper;
import org.spout.api.math.Vector3;
import org.spout.api.player.Player;
@ -57,7 +58,7 @@ public class SpoutUtil {
public static BlockVector toVector(BlockFace face) {
return toBlockVector(face.getOffset());
}
public static BlockVector toBlockVector(Vector3 vector) {
return new BlockVector(vector.getX(), vector.getY(), vector.getZ());
}
@ -85,9 +86,9 @@ public class SpoutUtil {
public static Point center(Point loc) {
return new Point(
loc.getWorld(),
loc.getX() + 0.5F,
loc.getY() + 0.5F,
loc.getZ() + 0.5F
MathHelper.floor(loc.getX()) + 0.5F,
MathHelper.floor(loc.getY()) + 0.5F,
MathHelper.floor(loc.getZ()) + 0.5F
);
}

View File

@ -54,7 +54,7 @@ public class WorldEditPlayerListener implements Listener {
/**
* Construct the object;
*
*
* @param plugin
*/
public WorldEditPlayerListener(WorldEditPlugin plugin) {
@ -81,9 +81,14 @@ public class WorldEditPlayerListener implements Listener {
*
* @param event Relevant event details
*/
//@EventHandler(order = Order.EARLY)
@EventHandler(order = Order.EARLY)
public void onPlayerCommandPreprocess(PreCommandEvent event) {
if (event.getMessage().startsWith("nowe:")) {
event.setMessage(event.getMessage().substring(5));
return;
}
String[] split = event.getMessage().split(" ");
if (split.length > 0) {

View File

@ -43,7 +43,7 @@ import java.util.zip.ZipEntry;
/**
* Plugin for Spout.
*
*
* @author sk89q
*/
public class WorldEditPlugin extends CommonPlugin implements Named {
@ -331,7 +331,7 @@ public class WorldEditPlugin extends CommonPlugin implements Named {
/**
* Sets the region selection for a player.
*
*
* @param player
* @param selection
*/