fixed tnt bug

This commit is contained in:
Chiss 2014-04-19 15:18:13 +10:00
parent b720a6433c
commit de2b42e190
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ public class Explosion extends MiniPlugin
if (!_regenerateGround) if (!_regenerateGround)
{ {
if (cur.getTypeId() != 98 || cur.getData() != 0 || cur.getData() != 3) if (cur.getTypeId() != 98 || (cur.getData() != 0 && cur.getData() != 3))
cur.setTypeId(0); cur.setTypeId(0);
} }