mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 02:47:11 +00:00
Whitespace fixes, reactivated command adjustments
This commit is contained in:
parent
d2968b1976
commit
7f7178957a
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user