Moved EntityType to its own class to hopefully fix the unexplainable IllegalAccessErrors.

This commit is contained in:
sk89q
2011-05-01 13:55:38 -07:00
parent 8840403669
commit 7dcb4da83b
4 changed files with 14 additions and 14 deletions

View File

@ -421,7 +421,7 @@ public class BukkitWorld extends LocalWorld {
* @return
*/
@Override
public int removeEntities(EntityType type, Vector origin, int radius) {
public int removeEntities(LocalWorld.EntityType type, Vector origin, int radius) {
int num = 0;
double radiusSq = Math.pow(radius, 2);