geforkt von Mirrors/FastAsyncWorldEdit
Whitespace fixes, reactivated command adjustments
Dieser Commit ist enthalten in:
Ursprung
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.cuboid.Block;
|
||||||
import org.spout.api.geo.discrete.Point;
|
import org.spout.api.geo.discrete.Point;
|
||||||
import org.spout.api.material.block.BlockFace;
|
import org.spout.api.material.block.BlockFace;
|
||||||
|
import org.spout.api.math.MathHelper;
|
||||||
import org.spout.api.math.Vector3;
|
import org.spout.api.math.Vector3;
|
||||||
import org.spout.api.player.Player;
|
import org.spout.api.player.Player;
|
||||||
|
|
||||||
@ -85,9 +86,9 @@ public class SpoutUtil {
|
|||||||
public static Point center(Point loc) {
|
public static Point center(Point loc) {
|
||||||
return new Point(
|
return new Point(
|
||||||
loc.getWorld(),
|
loc.getWorld(),
|
||||||
loc.getX() + 0.5F,
|
MathHelper.floor(loc.getX()) + 0.5F,
|
||||||
loc.getY() + 0.5F,
|
MathHelper.floor(loc.getY()) + 0.5F,
|
||||||
loc.getZ() + 0.5F
|
MathHelper.floor(loc.getZ()) + 0.5F
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,9 +81,14 @@ public class WorldEditPlayerListener implements Listener {
|
|||||||
*
|
*
|
||||||
* @param event Relevant event details
|
* @param event Relevant event details
|
||||||
*/
|
*/
|
||||||
//@EventHandler(order = Order.EARLY)
|
@EventHandler(order = Order.EARLY)
|
||||||
public void onPlayerCommandPreprocess(PreCommandEvent event) {
|
public void onPlayerCommandPreprocess(PreCommandEvent event) {
|
||||||
|
|
||||||
|
if (event.getMessage().startsWith("nowe:")) {
|
||||||
|
event.setMessage(event.getMessage().substring(5));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
String[] split = event.getMessage().split(" ");
|
String[] split = event.getMessage().split(" ");
|
||||||
|
|
||||||
if (split.length > 0) {
|
if (split.length > 0) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren