Compare commits
No commits in common. "36b2175edb77920293bc5c88a3338bbbd8346552" and "acdc61fcde6fdb25e52630d252a771367e281eaf" have entirely different histories.
36b2175edb
...
acdc61fcde
5
pom.xml
5
pom.xml
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.6.4-R2.1-SNAPSHOT</version>
|
<version>1.6.4-R0.1-SNAPSHOT</version>
|
||||||
<name>Bukkit</name>
|
<name>Bukkit</name>
|
||||||
<url>http://www.bukkit.org</url>
|
<url>http://www.bukkit.org</url>
|
||||||
|
|
||||||
@ -43,10 +43,11 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>2.3.2</version>
|
<version>2.0.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.6</source>
|
<source>1.6</source>
|
||||||
<target>1.6</target>
|
<target>1.6</target>
|
||||||
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -334,7 +334,7 @@ public class Location implements Cloneable {
|
|||||||
* @return the magnitude
|
* @return the magnitude
|
||||||
*/
|
*/
|
||||||
public double length() {
|
public double length() {
|
||||||
return Math.sqrt(NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z));
|
return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -345,7 +345,7 @@ public class Location implements Cloneable {
|
|||||||
* @return the magnitude
|
* @return the magnitude
|
||||||
*/
|
*/
|
||||||
public double lengthSquared() {
|
public double lengthSquared() {
|
||||||
return NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z);
|
return Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -381,7 +381,7 @@ public class Location implements Cloneable {
|
|||||||
throw new IllegalArgumentException("Cannot measure distance between " + getWorld().getName() + " and " + o.getWorld().getName());
|
throw new IllegalArgumentException("Cannot measure distance between " + getWorld().getName() + " and " + o.getWorld().getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
return NumberConversions.square(x - o.x) + NumberConversions.square(y - o.y) + NumberConversions.square(z - o.z);
|
return Math.pow(x - o.x, 2) + Math.pow(y - o.y, 2) + Math.pow(z - o.z, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -345,7 +345,7 @@ public abstract class Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Set<Permissible> users = Bukkit.getPluginManager().getPermissionSubscriptions(Server.BROADCAST_CHANNEL_ADMINISTRATIVE);
|
Set<Permissible> users = Bukkit.getPluginManager().getPermissionSubscriptions(Server.BROADCAST_CHANNEL_ADMINISTRATIVE);
|
||||||
String colored = ChatColor.GRAY + "" + ChatColor.ITALIC + "[" + result + ChatColor.GRAY + ChatColor.ITALIC + "]";
|
String colored = ChatColor.GRAY + "" + ChatColor.ITALIC + "[" + result + "]";
|
||||||
|
|
||||||
if (sendToSource && !(source instanceof ConsoleCommandSender)) {
|
if (sendToSource && !(source instanceof ConsoleCommandSender)) {
|
||||||
source.sendMessage(message);
|
source.sendMessage(message);
|
||||||
|
@ -100,7 +100,7 @@ public class EffectCommand extends VanillaCommand {
|
|||||||
final PotionEffect applyEffect = new PotionEffect(effect, duration, amplification);
|
final PotionEffect applyEffect = new PotionEffect(effect, duration, amplification);
|
||||||
|
|
||||||
player.addPotionEffect(applyEffect, true);
|
player.addPotionEffect(applyEffect, true);
|
||||||
broadcastCommandMessage(sender, String.format("Given %s (ID %d) * %d to %s for %d seconds", effect.getName(), effect.getId(), amplification, args[0], duration_temp));
|
broadcastCommandMessage(sender, String.format("Given %s (ID %d) * %d to %s for %d seconds", effect.getName(), effect.getId(), amplification, args[0], duration));
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -20,10 +20,6 @@ public final class NumberConversions {
|
|||||||
return floor(num + 0.5d);
|
return floor(num + 0.5d);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static double square(double num) {
|
|
||||||
return num * num;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int toInt(Object object) {
|
public static int toInt(Object object) {
|
||||||
if (object instanceof Number) {
|
if (object instanceof Number) {
|
||||||
return ((Number) object).intValue();
|
return ((Number) object).intValue();
|
||||||
|
@ -152,7 +152,7 @@ public class Vector implements Cloneable, ConfigurationSerializable {
|
|||||||
* @return the magnitude
|
* @return the magnitude
|
||||||
*/
|
*/
|
||||||
public double length() {
|
public double length() {
|
||||||
return Math.sqrt(NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z));
|
return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -161,7 +161,7 @@ public class Vector implements Cloneable, ConfigurationSerializable {
|
|||||||
* @return the magnitude
|
* @return the magnitude
|
||||||
*/
|
*/
|
||||||
public double lengthSquared() {
|
public double lengthSquared() {
|
||||||
return NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z);
|
return Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -175,7 +175,7 @@ public class Vector implements Cloneable, ConfigurationSerializable {
|
|||||||
* @return the distance
|
* @return the distance
|
||||||
*/
|
*/
|
||||||
public double distance(Vector o) {
|
public double distance(Vector o) {
|
||||||
return Math.sqrt(NumberConversions.square(x - o.x) + NumberConversions.square(y - o.y) + NumberConversions.square(z - o.z));
|
return Math.sqrt(Math.pow(x - o.x, 2) + Math.pow(y - o.y, 2) + Math.pow(z - o.z, 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -185,7 +185,7 @@ public class Vector implements Cloneable, ConfigurationSerializable {
|
|||||||
* @return the distance
|
* @return the distance
|
||||||
*/
|
*/
|
||||||
public double distanceSquared(Vector o) {
|
public double distanceSquared(Vector o) {
|
||||||
return NumberConversions.square(x - o.x) + NumberConversions.square(y - o.y) + NumberConversions.square(z - o.z);
|
return Math.pow(x - o.x, 2) + Math.pow(y - o.y, 2) + Math.pow(z - o.z, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -346,7 +346,7 @@ public class Vector implements Cloneable, ConfigurationSerializable {
|
|||||||
* @return whether this vector is in the sphere
|
* @return whether this vector is in the sphere
|
||||||
*/
|
*/
|
||||||
public boolean isInSphere(Vector origin, double radius) {
|
public boolean isInSphere(Vector origin, double radius) {
|
||||||
return (NumberConversions.square(origin.x - x) + NumberConversions.square(origin.y - y) + NumberConversions.square(origin.z - z)) <= NumberConversions.square(radius);
|
return (Math.pow(origin.x - x, 2) + Math.pow(origin.y - y, 2) + Math.pow(origin.z - z, 2)) <= Math.pow(radius, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user