use of micdoodle8.mods.galacticraft.core.network.PacketSimple in project MorePlanets by SteveKunG.
the class SlotRocketSchematicMP method onSlotChanged.
@Override
public void onSlotChanged() {
if (this.player instanceof EntityPlayerMP) {
int dimID = GCCoreUtil.getDimensionID(this.player.world);
GCCoreUtil.sendToAllAround(new PacketSimple(EnumSimplePacket.C_SPAWN_SPARK_PARTICLES, dimID, new Object[] { this.pos }), this.player.world, dimID, this.pos, 24);
}
}
Aggregations