geforkt von Mirrors/FastAsyncWorldEdit
Updated changelog for 5.5.2
Dieser Commit ist enthalten in:
Ursprung
db9808cfd1
Commit
e1fac30e62
@ -1,3 +1,9 @@
|
|||||||
|
5.5.2
|
||||||
|
- Update to MineCraft 1.5.
|
||||||
|
- Fixed //flip going the wrong direction in certain cases.
|
||||||
|
- Fixed 4096 block id support in schematics and snapshots.
|
||||||
|
- Fixed max-blocks-changed not being used.
|
||||||
|
|
||||||
5.5.1
|
5.5.1
|
||||||
- Added support for multiple versions of Minecraft. A folder will be created in
|
- Added support for multiple versions of Minecraft. A folder will be created in
|
||||||
plugins/WorldEdit/nmsblocks which contains different class files which will be
|
plugins/WorldEdit/nmsblocks which contains different class files which will be
|
||||||
|
@ -65,6 +65,7 @@ import org.bukkit.entity.Item;
|
|||||||
import org.bukkit.entity.ItemFrame;
|
import org.bukkit.entity.ItemFrame;
|
||||||
import org.bukkit.entity.LivingEntity;
|
import org.bukkit.entity.LivingEntity;
|
||||||
import org.bukkit.entity.Minecart;
|
import org.bukkit.entity.Minecart;
|
||||||
|
import org.bukkit.entity.MinecartTNT;
|
||||||
import org.bukkit.entity.Painting;
|
import org.bukkit.entity.Painting;
|
||||||
import org.bukkit.entity.Projectile;
|
import org.bukkit.entity.Projectile;
|
||||||
import org.bukkit.entity.TNTPrimed;
|
import org.bukkit.entity.TNTPrimed;
|
||||||
@ -1031,7 +1032,7 @@ public class BukkitWorld extends LocalWorld {
|
|||||||
++num;
|
++num;
|
||||||
}
|
}
|
||||||
} else if (type == EntityType.TNT) {
|
} else if (type == EntityType.TNT) {
|
||||||
if (ent instanceof TNTPrimed) {
|
if (ent instanceof TNTPrimed || ent instanceof MinecartTNT) {
|
||||||
ent.remove();
|
ent.remove();
|
||||||
++num;
|
++num;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren