3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Nailed the IllegalAccessException (thanks to lechd).

Dieser Commit ist enthalten in:
sk89q 2011-05-01 18:17:52 -07:00
Ursprung eb6dd2628a
Commit fecc64eafb

Datei anzeigen

@ -434,45 +434,36 @@ public class BukkitWorld extends LocalWorld {
continue; continue;
} }
switch (type) { if (type == EntityType.ARROWS) {
case ARROWS:
if (ent instanceof Arrow) { if (ent instanceof Arrow) {
ent.remove(); ent.remove();
num++; num++;
} }
break; } else if (type == EntityType.BOATS) {
case BOATS:
if (ent instanceof Boat) { if (ent instanceof Boat) {
ent.remove(); ent.remove();
num++; num++;
} }
break; } else if (type == EntityType.ITEMS) {
case ITEMS:
if (ent instanceof Item) { if (ent instanceof Item) {
ent.remove(); ent.remove();
num++; num++;
} }
break; } else if (type == EntityType.MINECARTS) {
case MINECARTS:
if (ent instanceof Minecart) { if (ent instanceof Minecart) {
ent.remove(); ent.remove();
num++; num++;
} }
break; } else if (type == EntityType.PAINTINGS) {
case PAINTINGS:
if (ent instanceof Painting) { if (ent instanceof Painting) {
ent.remove(); ent.remove();
num++; num++;
} }
break; } else if (type == EntityType.TNT) {
case TNT:
if (ent instanceof TNTPrimed) { if (ent instanceof TNTPrimed) {
ent.remove(); ent.remove();
num++; num++;
} }
break;
default:
continue;
} }
} }