mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 20:50:41 +01:00
Fixed NPE
This commit is contained in:
parent
c6d80df80d
commit
750cc107ae
1 changed files with 7 additions and 3 deletions
|
@ -282,9 +282,13 @@ public class NetServerHandler extends NetHandler
|
|||
|
||||
// Craftbukkit start
|
||||
CraftBlock block = (CraftBlock) player.getWorld().getBlockAt(l, i1, j1);
|
||||
int blockID = block.getTypeID();
|
||||
float damage = Block.m[blockID].a(player.getHandle()); //Get amount of damage going to block
|
||||
|
||||
int blockID = 0;
|
||||
float damage = 0;
|
||||
if(block != null) {
|
||||
blockID = block.getTypeID();
|
||||
damage = Block.m[blockID].a(player.getHandle()); //Get amount of damage going to block
|
||||
}
|
||||
|
||||
if (packet14blockdig.e == 0) {
|
||||
if (i2 > 16 || flag) {
|
||||
if(blockID > 0) {
|
||||
|
|
Loading…
Reference in a new issue