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;
@ -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

@ -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) {