Send explosion packet

This commit is contained in:
jglrxavpok 2020-05-14 16:19:04 +02:00
parent 1bcc0c9f5b
commit 583077d556

View File

@ -73,5 +73,9 @@ public abstract class Explosion {
packet.records[i*3+1] = y;
packet.records[i*3+2] = z;
}
instance.getPlayers().forEach(player -> {
player.sendPacketToViewersAndSelf(packet);
});
}
}