Updated changelog for 5.5.2

This commit is contained in:
wizjany 2013-03-15 15:38:02 -04:00
parent db9808cfd1
commit e1fac30e62
2 changed files with 8 additions and 1 deletions

View File

@ -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
- Added support for multiple versions of Minecraft. A folder will be created in
plugins/WorldEdit/nmsblocks which contains different class files which will be

View File

@ -65,6 +65,7 @@ import org.bukkit.entity.Item;
import org.bukkit.entity.ItemFrame;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Minecart;
import org.bukkit.entity.MinecartTNT;
import org.bukkit.entity.Painting;
import org.bukkit.entity.Projectile;
import org.bukkit.entity.TNTPrimed;
@ -1031,7 +1032,7 @@ public class BukkitWorld extends LocalWorld {
++num;
}
} else if (type == EntityType.TNT) {
if (ent instanceof TNTPrimed) {
if (ent instanceof TNTPrimed || ent instanceof MinecartTNT) {
ent.remove();
++num;
}